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

TagFetchMode.cs « LibGit2Sharp - github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6e06eb37eb54b671e8320c15915558d40e855ec4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
namespace LibGit2Sharp
{
    /// <summary>
    ///   Describe the expected tag retrieval behavior
    ///   when a fetch operation is being performed.
    /// </summary>
    public enum TagFetchMode
    {
        /// <summary>
        ///   Default behavior. Will automatically retrieve tags that
        ///   point to objects retrieved during this fetch.
        /// </summary>
        Auto = 0,  // GIT_REMOTE_DOWNLOAD_TAGS_AUTO
        
        /// <summary>
        ///   No tag will be retrieved.
        /// </summary>
        None,  // GIT_REMOTE_DOWNLOAD_TAGS_NONE

        /// <summary>
        ///   All tags will be downloaded, but _only_ tags, along with
        ///   all the objects these tags are pointing to.
        /// </summary>
        All,   // GIT_REMOTE_DOWNLOAD_TAGS_ALL
    }
}