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

GitDirection.cs « Core « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2015a3a150c7dba953f499dfa504a4f347ecc20d (plain)
1
2
3
4
5
6
7
8
namespace LibGit2Sharp.Core
{
    internal enum GitDirection
    {
        Fetch = 0,
        Push = 1
    }
}