package git

  1. Overview
  2. Docs

Search over the graph of Git objects.

type pred = [
  1. | `Commit of Hash.t
  2. | `Tag of string * Hash.t
  3. | `Tree of string * Hash.t
  4. | `Tree_root of Hash.t
]

The type for Value.t predecessors.

module Make (S : Store.S) : sig ... end