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

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

namespace LibGit2Sharp
{
    /// <summary>
    /// Indicates whether a refspec is a push refspec or a fetch refspec
    /// </summary>
    public enum RefSpecDirection
    {
        /// <summary>
        /// Indicates that the refspec is a fetch refspec
        /// </summary>
        Fetch,

        /// <summary>
        /// Indicates that the refspec is a push refspec
        /// </summary>
        Push
    }
}