-
Notifications
You must be signed in to change notification settings - Fork 894
/
Copy pathGitStatusOptions.cs
53 lines (45 loc) · 1.31 KB
/
GitStatusOptions.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
using System;
using System.Runtime.InteropServices;
namespace LibGit2Sharp.Core
{
[StructLayout(LayoutKind.Sequential)]
internal class GitStatusOptions : IDisposable
{
public uint Version = 1;
public GitStatusShow Show;
public GitStatusOptionFlags Flags;
public GitStrArrayManaged PathSpec;
public IntPtr Baseline = IntPtr.Zero;
public ushort RenameThreshold = 50;
public void Dispose()
{
PathSpec.Dispose();
}
}
internal enum GitStatusShow
{
IndexAndWorkDir = 0,
IndexOnly = 1,
WorkDirOnly = 2,
}
[Flags]
internal enum GitStatusOptionFlags
{
IncludeUntracked = (1 << 0),
IncludeIgnored = (1 << 1),
IncludeUnmodified = (1 << 2),
ExcludeSubmodules = (1 << 3),
RecurseUntrackedDirs = (1 << 4),
DisablePathspecMatch = (1 << 5),
RecurseIgnoredDirs = (1 << 6),
RenamesHeadToIndex = (1 << 7),
RenamesIndexToWorkDir = (1 << 8),
SortCaseSensitively = (1 << 9),
SortCaseInsensitively = (1 << 10),
RenamesFromRewrites = (1 << 11),
NoRefresh = (1 << 12),
UpdateIndex = (1 << 13),
IncludeUnreadable = (1 << 14),
IncludeUnreadableAsUntracked = (1 << 15),
}
}