Module Values.MergeBranchesByFastForwardOutputSource

Merges two branches using the fast-forward merge strategy.

Sourcetype nonrec t = {
  1. commitId : ObjectId.t option;
    (*

    The commit ID of the merge in the destination or target branch.

    *)
  2. treeId : ObjectId.t option;
    (*

    The tree ID of the merge in the destination or target branch.

    *)
}
Sourcetype nonrec error = [
  1. | `BranchDoesNotExistException of BranchDoesNotExistException.t
  2. | `BranchNameIsTagNameException of BranchNameIsTagNameException.t
  3. | `BranchNameRequiredException of BranchNameRequiredException.t
  4. | `CommitDoesNotExistException of CommitDoesNotExistException.t
  5. | `CommitRequiredException of CommitRequiredException.t
  6. | `ConcurrentReferenceUpdateException of ConcurrentReferenceUpdateException.t
  7. | `EncryptionIntegrityChecksFailedException of EncryptionIntegrityChecksFailedException.t
  8. | `EncryptionKeyAccessDeniedException of EncryptionKeyAccessDeniedException.t
  9. | `EncryptionKeyDisabledException of EncryptionKeyDisabledException.t
  10. | `EncryptionKeyNotFoundException of EncryptionKeyNotFoundException.t
  11. | `EncryptionKeyUnavailableException of EncryptionKeyUnavailableException.t
  12. | `InvalidBranchNameException of InvalidBranchNameException.t
  13. | `InvalidCommitException of InvalidCommitException.t
  14. | `InvalidRepositoryNameException of InvalidRepositoryNameException.t
  15. | `InvalidTargetBranchException of InvalidTargetBranchException.t
  16. | `ManualMergeRequiredException of ManualMergeRequiredException.t
  17. | `RepositoryDoesNotExistException of RepositoryDoesNotExistException.t
  18. | `RepositoryNameRequiredException of RepositoryNameRequiredException.t
  19. | `TipsDivergenceExceededException of TipsDivergenceExceededException.t
  20. | `Unknown_operation_error of string * string option
]
Sourceval make : ?commitId:??? -> ?treeId:??? -> unit -> t
Sourceval error_of_json : string -> Yojson.Safe.t -> [> `BranchDoesNotExistException of unit | `BranchNameIsTagNameException of unit | `BranchNameRequiredException of unit | `CommitDoesNotExistException of unit | `CommitRequiredException of unit | `ConcurrentReferenceUpdateException of unit | `EncryptionIntegrityChecksFailedException of unit | `EncryptionKeyAccessDeniedException of unit | `EncryptionKeyDisabledException of unit | `EncryptionKeyNotFoundException of unit | `EncryptionKeyUnavailableException of unit | `InvalidBranchNameException of unit | `InvalidCommitException of unit | `InvalidRepositoryNameException of unit | `InvalidTargetBranchException of unit | `ManualMergeRequiredException of unit | `RepositoryDoesNotExistException of unit | `RepositoryNameRequiredException of unit | `TipsDivergenceExceededException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_of_xml : string -> Awso.Xml.t -> [> `BranchDoesNotExistException of unit | `BranchNameIsTagNameException of unit | `BranchNameRequiredException of unit | `CommitDoesNotExistException of unit | `CommitRequiredException of unit | `ConcurrentReferenceUpdateException of unit | `EncryptionIntegrityChecksFailedException of unit | `EncryptionKeyAccessDeniedException of unit | `EncryptionKeyDisabledException of unit | `EncryptionKeyNotFoundException of unit | `EncryptionKeyUnavailableException of unit | `InvalidBranchNameException of unit | `InvalidCommitException of unit | `InvalidRepositoryNameException of unit | `InvalidTargetBranchException of unit | `ManualMergeRequiredException of unit | `RepositoryDoesNotExistException of unit | `RepositoryNameRequiredException of unit | `TipsDivergenceExceededException of unit | `Unknown_operation_error of string * string option ]
Sourceval error_to_json : error -> Yojson.Safe.t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ObjectId.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