Values.CreateSourceRepositoryBranchRequestSourceCreates a branch in a specified source repository in Amazon CodeCatalyst. This API only creates a branch in a source repository hosted in Amazon CodeCatalyst. You cannot use this API to create a branch in a linked repository.
type nonrec t = {spaceName : NameString.t;The name of the space.
*)projectName : NameString.t;The name of the project in the space.
*)sourceRepositoryName : SourceRepositoryNameString.t;The name of the repository where you want to create a branch.
*)name : SourceRepositoryBranchString.t;The name for the branch you're creating.
*)headCommitId : String_.t option;The commit ID in an existing branch from which you want to create the new branch.
*)}val make :
?headCommitId:??? ->
spaceName:NameString.t ->
projectName:NameString.t ->
sourceRepositoryName:SourceRepositoryNameString.t ->
name:SourceRepositoryBranchString.t ->
unit ->
t