Module Values.MergeBranchesByFastForwardInputSource

Merges two branches using the fast-forward merge strategy.

Sourcetype nonrec t = {
  1. repositoryName : RepositoryName.t;
    (*

    The name of the repository where you want to merge two branches.

    *)
  2. 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).

    *)
  3. 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).

    *)
  4. targetBranch : BranchName.t option;
    (*

    The branch where the merge is applied.

    *)
}
Sourceval context_ : string
Sourceval make : ?targetBranch:??? -> repositoryName:RepositoryName.t -> sourceCommitSpecifier:CommitName.t -> destinationCommitSpecifier:CommitName.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of RepositoryName.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t