forked from libgit2/libgit2sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSubmoduleIgnore.cs
More file actions
30 lines (30 loc) · 770 Bytes
/
SubmoduleIgnore.cs
File metadata and controls
30 lines (30 loc) · 770 Bytes
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
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>
Default = -1,
/// <summary>
/// Any change or untracked == dirty
/// </summary>
None = 0,
/// <summary>
/// Dirty if tracked files change
/// </summary>
Untracked = 1,
/// <summary>
/// Only dirty if HEAD moved
/// </summary>
Dirty = 2,
/// <summary>
/// Never dirty
/// </summary>
All = 3,
}
}