package git

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

The synchronization commands to a git repository.

module type ENDPOINT = sig ... end
type 'a shallow_update = {
  1. shallow : 'a list;
  2. unshallow : 'a list;
}
type 'a acks = {
  1. shallow : 'a list;
  2. unshallow : 'a list;
  3. acks : ('a * [ `Common | `Ready | `Continue | `ACK ]) list;
}
module type S = sig ... end
module Default : sig ... end
module Common (G : sig ... end) : sig ... end