Values.CommitSourceReturns information about a specific commit.
type nonrec t = {commitId : ObjectId.t option;The full SHA ID of the specified commit.
*)treeId : ObjectId.t option;Tree information for the specified commit.
*)parents : ParentList.t option;A list of parent commits for the specified commit. Each parent commit ID is the full commit ID.
*)message : Message.t option;The commit message associated with the specified commit.
*)committer : UserInfo.t option;Information about the person who committed the specified commit, also known as the committer. Information includes the date in timestamp format with GMT offset, the name of the committer, and the email address for the committer, as configured in Git. For more information about the difference between an author and a committer in Git, see Viewing the Commit History in Pro Git by Scott Chacon and Ben Straub.
*)additionalData : AdditionalData.t option;Any other data associated with the specified commit.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `List of [> `String of ObjectId.t ] list
| `String of ObjectId.t
| `Structure of (string * [> `String of Name.t ]) list ])
list ]