Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ConfigurationLevel.cs « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 987345adfe7bec840d4f597657ab87673417b85f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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,

        /// <summary>
        ///   The global ~/.gitconfig of the current user.
        /// </summary>
        Global,

        /// <summary>
        ///   The system wide .gitconfig.
        /// </summary>
        System
    }
}