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

StashModifiers.cs « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b0e6d41ff856f92b3a6459df20bdaeb5b63fd540 (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
using System;

namespace LibGit2Sharp
{
    ///<summary>
    /// Options controlling Stash behavior.
    ///</summary>
    [Flags]
    public enum StashModifiers
    {
        /// <summary>
        /// Default
        /// </summary>
        Default = 0,

        /// <summary>
        /// All changes already added to the index
        /// are left intact in the working directory
        /// </summary>
        KeepIndex = (1 << 0),

        /// <summary>
        /// All untracked files are also stashed and then
        /// cleaned up from the working directory
        /// </summary>
        IncludeUntracked = (1 << 1),

        /// <summary>
        /// All ignored files are also stashed and then
        /// cleaned up from the working directory
        /// </summary>
        IncludeIgnored = (1 << 2),
    }
}