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

CheckoutOptions.cs « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9f3554222d4fec84111af635764aa32f9cd5c4ab (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 CheckoutOptions
    {
        /// <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,
    }
}