-
Notifications
You must be signed in to change notification settings - Fork 894
/
Copy pathCheckoutNotificationOptions.cs
43 lines (36 loc) · 1.15 KB
/
CheckoutNotificationOptions.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
using System;
namespace LibGit2Sharp
{
/// <summary>
/// Flags controlling checkout notification behavior.
/// </summary>
[Flags]
public enum CheckoutNotifyFlags
{
/// <summary>
/// No checkout notification.
/// </summary>
None = 0, /* GIT_CHECKOUT_NOTIFY_NONE */
/// <summary>
/// Notify on conflicting paths.
/// </summary>
Conflict = (1 << 0), /* GIT_CHECKOUT_NOTIFY_CONFLICT */
/// <summary>
/// Notify about dirty files. These are files that do not need
/// an update, but no longer match the baseline.
/// </summary>
Dirty = (1 << 1), /* GIT_CHECKOUT_NOTIFY_DIRTY */
/// <summary>
/// Notify for files that will be updated.
/// </summary>
Updated = (1 << 2), /* GIT_CHECKOUT_NOTIFY_UPDATED */
/// <summary>
/// Notify for untracked files.
/// </summary>
Untracked = (1 << 3), /* GIT_CHECKOUT_NOTIFY_UNTRACKED */
/// <summary>
/// Notify about ignored file.
/// </summary>
Ignored = (1 << 4), /* GIT_CHECKOUT_NOTIFY_IGNORED */
}
}