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

github.com/mono/libgit2.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarlos Martín Nieto <carlos@cmartin.tk>2012-09-30 12:56:06 +0400
committerCarlos Martín Nieto <carlos@cmartin.tk>2012-09-30 14:05:28 +0400
commit3230a44f4c951cbaeadfa5ae111f6558298dfc61 (patch)
tree2a07a140b7e6352ab6f97d5ca382eafd4ed96dcd /src/remote.h
parenteb0bd77a8892b77b8eaa57da2f827981c62bc161 (diff)
remote: support downloading all tags
Also honor remote.$name.tagopt = --tags.
Diffstat (limited to 'src/remote.h')
-rw-r--r--src/remote.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/remote.h b/src/remote.h
index 51587beb1..b8bb2c55d 100644
--- a/src/remote.h
+++ b/src/remote.h
@@ -24,7 +24,7 @@ struct git_remote {
git_repository *repo;
git_remote_callbacks callbacks;
unsigned int need_pack:1,
- download_tags:2, /* There are three possible values */
+ download_tags:2, /* There are four possible values */
check_cert:1;
};