package irmin

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

None is an implementation of S which does nothing.

Parameters

module H : Tc.S0
module R : Tc.S0

Signature

include S with type commit_id = H.t and type branch_id = R.t

Remote synchronization

type t

The type for store handles.

type commit_id = H.t

The type for store heads.

type branch_id = R.t

The type for branch IDs.

val fetch : t -> ?depth:int -> uri:string -> branch_id -> [ `Head of commit_id | `No_head | `Error ] Lwt.t

fetch t uri fetches the contents of the remote store located at uri into the local store t. Return the head of the remote branch with the same name, which is now in the local store. No_head means no such branch exists.

val push : t -> ?depth:int -> uri:string -> branch_id -> [ `Ok | `Error ] Lwt.t

push t uri pushes the contents of the local store t into the remote store located at uri.

val create : 'a -> t Lwt.t

Create a remote store handle.

OCaml

Innovation. Community. Security.