The various flags used in GIT operations.
This class allows the specification of the various GIT flags using the format
@ Upper
Convert strings to upper case.
An operator is provided to allow these flags to be OR-ed as required.
| Enumerator |
|---|
| NoFlagSet | Value indicating no flags set.
|
| Upper | Convert strings to upper case.
|
| Lower | Convert strings to lower case.
|
| KeepErr | Keep error status on return - will throw instead of take the default
|
| Abbrev | Allow abbreviations
|
| LastBit | Only consider Least significant bit of integer values when treating integers as logical.
Alternatively, non-zero is false.
|
| KeepValErr | Keep error status on return for value errors, not for no value supplied errors when it will take the default.
The result is that we will throw if the value is invalid.
|