Values.MergeBranchesByFastForwardInputSourceMerges two branches using the fast-forward merge strategy.
type nonrec t = {repositoryName : RepositoryName.t;The name of the repository where you want to merge two branches.
*)sourceCommitSpecifier : CommitName.t;The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).
*)destinationCommitSpecifier : CommitName.t;The branch, tag, HEAD, or other fully qualified reference used to identify a commit (for example, a branch name or a full commit ID).
*)targetBranch : BranchName.t option;The branch where the merge is applied.
*)}val make :
?targetBranch:??? ->
repositoryName:RepositoryName.t ->
sourceCommitSpecifier:CommitName.t ->
destinationCommitSpecifier:CommitName.t ->
unit ->
t