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

IndexEntryState.cs « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e30a25af4736d2d21ce1bcdbe9286d2cc2d8bf15 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
namespace LibGit2Sharp
{
    public enum IndexEntryState
    {
        NotModified,
        NewUntracked,
        NewStaged,
        ModifiedUnstaged,
        ModifiedStaged,
        RemovedUnstaged,
        RemovedStaged,
    }
}