RedPanda-CPP/RedPandaIDE/vcs/gitutils.h

34 lines
464 B
C
Raw Normal View History

2022-02-15 21:39:17 +08:00
#ifndef GITUTILS_H
#define GITUTILS_H
enum class GitResetStrategy {
Soft,
Hard,
Merge,
Mixed,
Keep
};
2022-02-20 13:26:15 +08:00
enum class GitMergeStrategy {
Resolve,
Recursive,
Ours,
Subtree
};
enum class GitMergeStrategyOption {
Ours,
Theirs,
Patience,
Ignore_Space_Change,
Ignore_All_Space,
Ignore_Space_At_Eol,
Renormalize,
No_Renormalize,
Find_Names,
Rename_Threshold,
Subtree
};
2022-02-15 21:39:17 +08:00
#endif // GITUTILS_H