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

DiffTargets.cs « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8488a9a031fff46953b71c837eb08a30fef5d552 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;

namespace LibGit2Sharp
{
    /// <summary>
    ///   The targets of a Tree based diff comparison.
    /// </summary>
    [Flags]
    public enum DiffTargets
    {
        /// <summary>
        ///   The repository index.
        /// </summary>
        Index = 1,

        /// <summary>
        ///   The working directory.
        /// </summary>
        WorkingDirectory = 2,
    }
}