Api.Commitval id : t -> Current_git.Commit_id.tThe commit ID, which can be used to fetch it.
set_status commit context status sets the status of commit/context to status.
val owner_name : t -> stringowner_name t is the "owner/name" string identifying the repository.
val hash : t -> stringhash t is the Git commit hash of t.
val committed_date : t -> stringcommitted_date t is the datetime when t was committed
val message : t -> stringmessage t is the Git commit message of t.
val pp : t Fmt.tpp t pretty print the commit as "owner/name id hash committed_date (Commit message)"
val pp_short : t Fmt.tpp_short t pretty print the commit as "owner/name hash"
val uri : t -> Uri.turi t is a URI for the GitHub web page showing t.
val pr_name : t -> string optionpr_name t is the name of the ref that the commit belongs to if it is a PR, and None if it is a branch
val branch_name : t -> string optionbranch_name t is the name of the ref that the commit belongs to if it is a branch, and None if it is a PR