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

GitReferenceType.cs « Core « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 04eaaa21922347091b6498334df79182a1b4bbd2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
using System;

namespace LibGit2Sharp.Core
{
    [Flags]
    internal enum GitReferenceType
    {
        Invalid = 0,
        Oid = 1,
        Symbolic = 2,
        Packed = 4,
        Peel = 8,
        ListAll = Oid | Symbolic | Packed
    }
}