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