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

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'LibGit2Sharp/TagFetchMode.cs')
-rw-r--r--LibGit2Sharp/TagFetchMode.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/LibGit2Sharp/TagFetchMode.cs b/LibGit2Sharp/TagFetchMode.cs
index 13024cb0..6e06eb37 100644
--- a/LibGit2Sharp/TagFetchMode.cs
+++ b/LibGit2Sharp/TagFetchMode.cs
@@ -7,15 +7,15 @@
public enum TagFetchMode
{
/// <summary>
- /// No tag will be retrieved.
- /// </summary>
- None = 1, // GIT_REMOTE_DOWNLOAD_TAGS_NONE
-
- /// <summary>
/// Default behavior. Will automatically retrieve tags that
/// point to objects retrieved during this fetch.
/// </summary>
- Auto, // GIT_REMOTE_DOWNLOAD_TAGS_AUTO
+ 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