diff options
Diffstat (limited to 'repo')
-rwxr-xr-x | repo | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -147,7 +147,7 @@ if not REPO_REV: | |||
147 | REPO_REV = 'stable' | 147 | REPO_REV = 'stable' |
148 | 148 | ||
149 | # increment this whenever we make important changes to this script | 149 | # increment this whenever we make important changes to this script |
150 | VERSION = (2, 12) | 150 | VERSION = (2, 14) |
151 | 151 | ||
152 | # increment this if the MAINTAINER_KEYS block is modified | 152 | # increment this if the MAINTAINER_KEYS block is modified |
153 | KEYRING_VERSION = (2, 3) | 153 | KEYRING_VERSION = (2, 3) |
@@ -314,6 +314,9 @@ def GetParser(gitc_init=False): | |||
314 | group.add_option('--partial-clone', action='store_true', | 314 | group.add_option('--partial-clone', action='store_true', |
315 | help='perform partial clone (https://git-scm.com/' | 315 | help='perform partial clone (https://git-scm.com/' |
316 | 'docs/gitrepository-layout#_code_partialclone_code)') | 316 | 'docs/gitrepository-layout#_code_partialclone_code)') |
317 | group.add_option('--no-partial-clone', action='store_false', | ||
318 | help='disable use of partial clone (https://git-scm.com/' | ||
319 | 'docs/gitrepository-layout#_code_partialclone_code)') | ||
317 | group.add_option('--clone-filter', action='store', default='blob:none', | 320 | group.add_option('--clone-filter', action='store', default='blob:none', |
318 | help='filter for use with --partial-clone ' | 321 | help='filter for use with --partial-clone ' |
319 | '[default: %default]') | 322 | '[default: %default]') |