package irmin-unix

  1. Overview
  2. Docs
On This Page
  1. Git Store
Legend:
Library
Module
Module type
Parameter
Class
Class type

Bidirectional Git backends.

Git Store

module type G = sig ... end
module type S = sig ... end
module type Backend = sig ... end
module Maker (G : Irmin_git.G) : Backend with module G = G
module FS : Backend with module G = Git_unix.Store

Embed an Irmin store into a local Git repository.

module Mem : Backend with module G = Irmin_git.Mem

Embed an Irmin store into an in-memory Git repository.