forked from libgit2/libgit2sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CurrentOperation.cs
69 lines (58 loc) · 1.6 KB
/
CurrentOperation.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
namespace LibGit2Sharp
{
/// <summary>
/// Determines the pending operation of a git repository - ie, whether
/// an operation (merge, cherry-pick, etc) is in progress.
/// </summary>
public enum CurrentOperation
{
/// <summary>
/// No operation is in progress.
/// </summary>
None = 0,
/// <summary>
/// A merge is in progress.
/// </summary>
Merge = 1,
/// <summary>
/// A revert is in progress.
/// </summary>
Revert = 2,
/// <summary>
/// A sequencer revert is in progress.
/// </summary>
RevertSequence = 3,
/// <summary>
/// A cherry-pick is in progress.
/// </summary>
CherryPick = 4,
/// <summary>
/// A sequencer cherry-pick is in progress.
/// </summary>
CherryPickSequence = 5,
/// <summary>
/// A bisect is in progress.
/// </summary>
Bisect = 6,
/// <summary>
/// A rebase is in progress.
/// </summary>
Rebase = 7,
/// <summary>
/// A rebase --interactive is in progress.
/// </summary>
RebaseInteractive = 8,
/// <summary>
/// A rebase --merge is in progress.
/// </summary>
RebaseMerge = 9,
/// <summary>
/// A mailbox application (am) is in progress.
/// </summary>
ApplyMailbox = 10,
/// <summary>
/// A mailbox application (am) or rebase is in progress.
/// </summary>
ApplyMailboxOrRebase = 11,
}
}