ConflictResolution
public enum ConflictResolution : BoxEnum
The desired behavior for conflict-resolution if a template already exists on a given file or folder
-
Preserve the existing value on the file
Declaration
Swift
case none
-
Force-apply the cascade policy’s value over any existing value.
Declaration
Swift
case overwrite
-
A custom conflict resolution method.
Declaration
Swift
case customValue(String)
-
Declaration
Swift
public init(_ value: String)
-
Declaration
Swift
public var description: String { get }