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

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

namespace LibGit2Sharp
{
    /// <summary>
    /// Options controlling Checkout behavior.
    /// </summary>
    [Flags]
    public enum CheckoutModifiers
    {
        /// <summary>
        /// No checkout flags - use default behavior.
        /// </summary>
        None = 0,

        /// <summary>
        /// Proceed with checkout even if the index or the working tree differs from HEAD.
        /// This will throw away local changes.
        /// </summary>
        Force,
    }
}