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

DiffOptions.cs « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 761a52a8260aaac136b7bb936f4201d71069cd21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
using System;

namespace LibGit2Sharp
{
    /// <summary>
    ///   Additional behaviors the diffing should take into account
    ///   when performing the comparison.
    /// </summary>
    [Flags]
    internal enum DiffOptions
    {
        /// <summary>
        ///   No special behavior.
        /// </summary>
        None = 0,

        /// <summary>
        ///   Include untracked files among the files to be processed, when
        ///   diffing against the working directory.
        /// </summary>
        IncludeUntracked = (1 << 1),

        /// <summary>
        ///   Include unmodified files among the files to be processed, when
        ///   diffing against the working directory.
        /// </summary>
        IncludeUnmodified = (1 << 2),

        /// <summary>
        ///   Treats the passed pathspecs as explicit paths (no pathspec match).
        /// </summary>
        DisablePathspecMatch = (1 << 3),

        /// <summary>
        ///   Include ignored files among the files to be processed, when
        ///   diffing against the working directory.
        /// </summary>
        IncludeIgnored = (1 << 4),
    }
}