package irmin-git
Install
dune-project
Dependency
Authors
Maintainers
Sources
sha256=09996fbcc2c43e117a9bd8e9028c635e81cccb264d5e02d425ab8b06bbacdbdb
sha512=0391a6bf7b94a1edd50a3a8df9e58961739fa78d7d689d61f56bc87144483bad2ee539df595c33d9d52c29b3458da5dddf3a73b5eb85e49c4667c26d2cd46be1
doc/irmin-git.unix/Irmin_git_unix/Maker/argument-1-G/Value/Commit/index.html
Module Value.Commit
type hash = hashtype nonrec t = hash Git.Commit.tval make :
tree:hash ->
author:Git.User.t ->
committer:Git.User.t ->
?parents:hash list ->
?extra:(string * string list) list ->
string option ->
tmake ~author ~committer ?parents ~tree msg makes an OCaml value t. ?parents should be a non-empty list and corresponds to a list of hashes of parent commits. tree should be a hash of a Tree.t object.
Note. This function does not write a new commit on the store and does not check the validity of parents and tree. By this way, this function never fails.
digest t associates a hash to any value of t. It is guaranteed that if x = y or compare x y = 0, then digest x = digest y.
val hash : t -> inthash blob associates a non-negative integer to any value of t. It is guaranteed that if x = y or compare x y = 0, then hash x = hash y.
Sets and Maps.
val length : t -> int64length t returns the length of the given commit object.
val committer : t -> Git.User.tcommitter t returns the committer of the given commit object.
val author : t -> Git.User.tauthor c returns the author of the given commit object.
val message : t -> string optionmessage c returns the message of the given commit object.
val extra : t -> (string * string list) list