Welcome to mirror list, hosted at ThFree Co, Russian Federation.

CurrentOperation.cs « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: be0ffebc8b4658846206aae84e558bcaef5fb514 (plain)
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
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 cherry-pick is in progress.
        /// </summary>
        CherryPick = 3,

        /// <summary>
        ///   A bisect is in progress.
        /// </summary>
        Bisect = 4,

        /// <summary>
        ///   A rebase is in progress.
        /// </summary>
        Rebase = 5,

        /// <summary>
        ///   A rebase --interactive is in progress.
        /// </summary>
        RebaseInteractive = 6,

        /// <summary>
        ///   A rebase --merge is in progress.
        /// </summary>
        RebaseMerge = 7,

        /// <summary>
        ///   A mailbox application (am) is in progress.
        /// </summary>
        ApplyMailbox = 8,

        /// <summary>
        ///   A mailbox application (am) or rebase is in progress.
        /// </summary>
        ApplyMailboxOrRebase = 9,
    }
}