Values.CreateBranchInputSourceRepresents the input of a create branch operation.
type nonrec t = {repositoryName : RepositoryName.t;The name of the repository in which you want to create the new branch.
*)branchName : BranchName.t;The name of the new branch to create.
*)commitId : CommitId.t;The ID of the commit to point the new branch to.
*)}val make :
repositoryName:RepositoryName.t ->
branchName:BranchName.t ->
commitId:CommitId.t ->
unit ->
t