GitResolveFileConflictStrategy¶
- class GitResolveFileConflictStrategy.GitResolveFileConflictStrategy(value)¶
Bases:
Enum
Defines how to handle file conflicts.Our conflict handling relies on checkout of both conlficted versions of a file and then choosingwhat to do with them.- Normal = 0¶
- Use the default behavior for handling file conflicts.
- Ours = 1¶
- For conflicting files, checkout the “ours” version ofthe file from the index and use it as the resolved version.
- Theirs = 2¶
- For conflicting files, checkout the “theirs” version ofthe file from the index and use it as the resolved version.