Module Values.ConflictResolutionSource

If AUTOMERGE is the conflict resolution strategy, a list of inputs to use when resolving conflicts during a merge.

Sourcetype nonrec t = {
  1. replaceContents : ReplaceContentEntries.t option;
    (*

    Files to have content replaced as part of the merge conflict resolution.

    *)
  2. deleteFiles : DeleteFileEntries.t option;
    (*

    Files to be deleted as part of the merge conflict resolution.

    *)
  3. setFileModes : SetFileModeEntries.t option;
    (*

    File modes that are set as part of the merge conflict resolution.

    *)
}
Sourceval make : ?replaceContents:??? -> ?deleteFiles:??? -> ?setFileModes:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Blob of FileContent.t | `Enum of string | `String of Path.t ]) list ] list ]) 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