GitMergeFlag enum
Flags for merge options.
Values
- findRenames → const GitMergeFlag
-
Detect renames that occur between the common ancestor and the "ours" side or the common ancestor and the "theirs" side. This will enable the ability to merge between a modified and renamed file.
const GitMergeFlag(1) - failOnConflict → const GitMergeFlag
-
If a conflict occurs, exit immediately instead of attempting to continue resolving conflicts. The merge operation will fail with and no index will be returned.
const GitMergeFlag(2) - skipREUC → const GitMergeFlag
-
Do not write the REUC extension on the generated index.
const GitMergeFlag(4) - noRecursive → const GitMergeFlag
-
If the commits being merged have multiple merge bases, do not build a recursive merge base (by merging the multiple merge bases), instead simply use the first base.
const GitMergeFlag(8)
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- index → int
-
A numeric identifier for the enumerated value.
no setterinherited
- name → String
-
Available on Enum, provided by the EnumName extension
The name of the enum value.no setter - runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
- value → int
-
final
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
fromValue(
int value) → GitMergeFlag
Constants
-
values
→ const List<
GitMergeFlag> - A constant List of the values in this enum, in order of their declaration.