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.cs10
1 files changed, 8 insertions, 2 deletions
diff --git a/LibGit2Sharp/TagFetchMode.cs b/LibGit2Sharp/TagFetchMode.cs
index 8e8efc79..993833f4 100644
--- a/LibGit2Sharp/TagFetchMode.cs
+++ b/LibGit2Sharp/TagFetchMode.cs
@@ -7,10 +7,16 @@
public enum TagFetchMode
{
/// <summary>
- /// Default behavior. Will automatically retrieve tags that
+ /// Use the setting from the configuration
+ /// or, when there isn't any, fallback to default behavior.
+ /// </summary>
+ FromConfigurationOrDefault = 0, // GIT_REMOTE_DOWNLOAD_TAGS_FALLBACK
+
+ /// <summary>
+ /// Will automatically retrieve tags that
/// point to objects retrieved during this fetch.
/// </summary>
- Auto = 0, // GIT_REMOTE_DOWNLOAD_TAGS_AUTO
+ Auto, // GIT_REMOTE_DOWNLOAD_TAGS_AUTO
/// <summary>
/// No tag will be retrieved.