Module Value.Commit

type hash = hash
type nonrec t = hash Git__Commit.t
val make : tree:hash -> author:Git__.User.t -> committer:Git__.User.t -> ?parents:hash list -> ?extra:(string * string list) list -> string option -> t
val format : t Encore.t
val digest : t -> hash
val pp : t Fmt.t
val compare : t -> t -> int
val hash : t -> int
val equal : t -> t -> bool
module Set : sig ... end
module Map : sig ... end
val length : t -> int64
val parents : t -> hash list
val tree : t -> hash
val committer : t -> Git__.User.t
val author : t -> Git__.User.t
val message : t -> string option
val extra : t -> (string * string list) list
val compare_by_date : t -> t -> int