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
38 lines (33 loc) · 921 Bytes
/
ConfigurationLevel.cs
File metadata and controls
38 lines (33 loc) · 921 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
34
35
36
37
38
namespace LibGit2Sharp
{
/// <summary>
/// Specifies the level of configuration to use.
/// </summary>
public enum ConfigurationLevel
{
/// <summary>
/// Worktree specific configuration file; $GIT_DIR/config.worktree
/// </summary>
Worktree = 6,
/// <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,
}
}