package irmin-mirage-git

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Irmin_mirage_gitSource

Sourcemodule type S = sig ... end
Sourcemodule type S_MAKER = functor (G : Irmin_git.G) -> functor (C : Irmin.Contents.S) -> functor (P : Irmin.Path.S) -> functor (B : Irmin.Branch.S) -> S with type key = P.t and type step = P.step and module Key = P and type contents = C.t and type branch = B.t and module Git = G
Sourcemodule type KV_MAKER = functor (G : Irmin_git.G) -> functor (C : Irmin.Contents.S) -> S with type key = string list and type step = string and type contents = C.t and type branch = string and module Git = G
Sourcemodule type REF_MAKER = functor (G : Irmin_git.G) -> functor (C : Irmin.Contents.S) -> S with type key = string list and type step = string and type contents = C.t and type branch = Irmin_git.reference and module Git = G
Sourcemodule type KV_RO = sig ... end
Sourcemodule KV_RO (G : Irmin_git.G) : KV_RO with type git := G.t

Functor to create a MirageOS' KV_RO store from a Git repository. The key "/HEAD" always shows the current HEAD.

Sourcemodule type KV_RW = sig ... end
Sourcemodule KV_RW (G : Irmin_git.G) (C : Mirage_clock.PCLOCK) : KV_RW with type git := G.t

Functor to create a MirageOS' KV_RW store from a Git repository.

Sourcemodule Mem : sig ... end

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