-
Notifications
You must be signed in to change notification settings - Fork 892
/
Copy pathChangeKind.cs
64 lines (54 loc) · 1.36 KB
/
ChangeKind.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
namespace LibGit2Sharp
{
/// <summary>
/// The kind of changes that a Diff can report.
/// </summary>
public enum ChangeKind
{
/// <summary>
/// No changes detected.
/// </summary>
Unmodified = 0,
/// <summary>
/// The file was added.
/// </summary>
Added = 1,
/// <summary>
/// The file was deleted.
/// </summary>
Deleted = 2,
/// <summary>
/// The file content was modified.
/// </summary>
Modified = 3,
/// <summary>
/// The file was renamed.
/// </summary>
Renamed = 4,
/// <summary>
/// The file was copied.
/// </summary>
Copied = 5,
/// <summary>
/// The file is ignored in the workdir.
/// </summary>
Ignored = 6,
/// <summary>
/// The file is untracked in the workdir.
/// </summary>
Untracked = 7,
/// <summary>
/// The type (i.e. regular file, symlink, submodule, ...)
/// of the file was changed.
/// </summary>
TypeChanged = 8,
/// <summary>
/// Entry is unreadable.
/// </summary>
Unreadable = 9,
/// <summary>
/// Entry is currently in conflict.
/// </summary>
Conflicted = 10,
}
}