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

SubmoduleIgnore.cs « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e984072958aa8664ece292cdb93b25c381f89283 (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
namespace LibGit2Sharp
{
    /// <summary>
    /// Values that could be specified for how closely to examine the
    /// working directory when getting submodule status.
    /// </summary>
    public enum SubmoduleIgnore
    {
        /// <summary>
        /// Reset to the last saved ignore rule.
        /// </summary>
        Reset = -1,

        /// <summary>
        /// Any change or untracked == dirty
        /// </summary>
        None = 1,

        /// <summary>
        /// Dirty if tracked files change
        /// </summary>
        Untracked = 2,

        /// <summary>
        /// Only dirty if HEAD moved
        /// </summary>
        Dirty = 3,

        /// <summary>
        /// Never dirty
        /// </summary>
        All = 4,
    }
}