namespace LibGit2Sharp { /// /// Specifies the level of configuration to use. /// public enum ConfigurationLevel { /// /// The local .git/config of the current repository. /// Local = 5, /// /// The global ~/.gitconfig of the current user. /// Global = 4, /// /// The global ~/.config/git/config of the current user. /// Xdg = 3, /// /// The system wide .gitconfig. /// System = 2, /// /// Another system-wide configuration on Windows. /// ProgramData = 1, } }