diff options
author | Carlos Martín Nieto <carlos@cmartin.tk> | 2012-09-30 10:56:06 +0200 |
---|---|---|
committer | Carlos Martín Nieto <carlos@cmartin.tk> | 2012-09-30 12:05:28 +0200 |
commit | 3230a44f4c951cbaeadfa5ae111f6558298dfc61 (patch) | |
tree | 2a07a140b7e6352ab6f97d5ca382eafd4ed96dcd /src/remote.h | |
parent | eb0bd77a8892b77b8eaa57da2f827981c62bc161 (diff) | |
download | libgit2-3230a44f4c951cbaeadfa5ae111f6558298dfc61.tar.gz |
remote: support downloading all tags
Also honor remote.$name.tagopt = --tags.
Diffstat (limited to 'src/remote.h')
-rw-r--r-- | src/remote.h | 2 |
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; }; |