forked from libgit2/libgit2sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathConfigurationLevel.cs
More file actions
33 lines (29 loc) · 778 Bytes
/
ConfigurationLevel.cs
File metadata and controls
33 lines (29 loc) · 778 Bytes
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
namespace LibGit2Sharp
{
/// <summary>
/// Specifies the level of configuration to use.
/// </summary>
public enum ConfigurationLevel
{
/// <summary>
/// The local .git/config of the current repository.
/// </summary>
Local = 5,
/// <summary>
/// The global ~/.gitconfig of the current user.
/// </summary>
Global = 4,
/// <summary>
/// The global ~/.config/git/config of the current user.
/// </summary>
Xdg = 3,
/// <summary>
/// The system wide .gitconfig.
/// </summary>
System = 2,
/// <summary>
/// Another system-wide configuration on Windows.
/// </summary>
ProgramData = 1,
}
}