git
  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type fetch = Git.Sync.Result.fetch = {
  1. head : Git.SHA.Commit.t option;
  2. references : Git.SHA.Commit.t Git.Reference.Map.t;
  3. sha1s : Git.SHA.t list;
}
val pretty_fetch : fetch -> string
type ok_or_error = [
  1. | `Error of string
  2. | `Ok
]
type push = Git.Sync.Result.push = {
  1. result : ok_or_error;
  2. commands : (Git.Reference.t * ok_or_error) list;
}
val pretty_push : push -> string