forked from mono/libgit2sharp
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDiffModifiers.cs
More file actions
51 lines (44 loc) · 1.49 KB
/
DiffModifiers.cs
File metadata and controls
51 lines (44 loc) · 1.49 KB
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
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),
/// <summary>
/// Specifies that no rename heuristics will be used when checking for
/// renames, renames being matched only on unmodified renamed files.
/// </summary>
FindExactRenames = (1 << 5),
/// <summary>
/// Specifies that no renames will be searched for when running blame.
/// </summary>
FindNoRenames = (1 << 6),
}
}