-
Notifications
You must be signed in to change notification settings - Fork 894
/
Copy pathDiffModifiers.cs
40 lines (35 loc) · 1.1 KB
/
DiffModifiers.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
using System;
namespace LibGit2Sharp
{
/// <summary>
/// Additional behaviors the diffing should take into account
/// when performing the comparison.
/// </summary>
[Flags]
internal enum DiffModifiers
{
/// <summary>
/// No special behavior.
/// </summary>
None = 0,
/// <summary>
/// Include untracked files among the files to be processed, when
/// diffing against the working directory.
/// </summary>
IncludeUntracked = (1 << 1),
/// <summary>
/// Include unmodified files among the files to be processed, when
/// diffing against the working directory.
/// </summary>
IncludeUnmodified = (1 << 2),
/// <summary>
/// Treats the passed pathspecs as explicit paths (no pathspec match).
/// </summary>
DisablePathspecMatch = (1 << 3),
/// <summary>
/// Include ignored files among the files to be processed, when
/// diffing against the working directory.
/// </summary>
IncludeIgnored = (1 << 4),
}
}