diff options
Diffstat (limited to 'repo')
-rwxr-xr-x | repo | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -149,7 +149,7 @@ if not REPO_REV: | |||
149 | BUG_URL = 'https://bugs.chromium.org/p/gerrit/issues/entry?template=Repo+tool+issue' | 149 | BUG_URL = 'https://bugs.chromium.org/p/gerrit/issues/entry?template=Repo+tool+issue' |
150 | 150 | ||
151 | # increment this whenever we make important changes to this script | 151 | # increment this whenever we make important changes to this script |
152 | VERSION = (2, 21) | 152 | VERSION = (2, 29) |
153 | 153 | ||
154 | # increment this if the MAINTAINER_KEYS block is modified | 154 | # increment this if the MAINTAINER_KEYS block is modified |
155 | KEYRING_VERSION = (2, 3) | 155 | KEYRING_VERSION = (2, 3) |
@@ -325,9 +325,9 @@ def InitParser(parser, gitc_init=False): | |||
325 | # want -c, so try to satisfy both as best we can. | 325 | # want -c, so try to satisfy both as best we can. |
326 | if not gitc_init: | 326 | if not gitc_init: |
327 | cbr_opts += ['-c'] | 327 | cbr_opts += ['-c'] |
328 | group.add_option(*cbr_opts, | 328 | group.add_option(*cbr_opts, default=True, |
329 | dest='current_branch_only', action='store_true', | 329 | dest='current_branch_only', action='store_true', |
330 | help='fetch only current manifest branch from server') | 330 | help='fetch only current manifest branch from server (default)') |
331 | group.add_option('--no-current-branch', | 331 | group.add_option('--no-current-branch', |
332 | dest='current_branch_only', action='store_false', | 332 | dest='current_branch_only', action='store_false', |
333 | help='fetch all manifest branches from server') | 333 | help='fetch all manifest branches from server') |