diff options
Diffstat (limited to 'subcmds')
-rw-r--r-- | subcmds/sync.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/subcmds/sync.py b/subcmds/sync.py index c2303232..d4e302ac 100644 --- a/subcmds/sync.py +++ b/subcmds/sync.py | |||
@@ -238,12 +238,11 @@ later is required to fix a server side protocol bug. | |||
238 | p.add_option('--no-use-superproject', action='store_false', | 238 | p.add_option('--no-use-superproject', action='store_false', |
239 | dest='use_superproject', | 239 | dest='use_superproject', |
240 | help='disable use of manifest superprojects') | 240 | help='disable use of manifest superprojects') |
241 | p.add_option('--tags', | 241 | p.add_option('--tags', action='store_true', |
242 | action='store_false', | ||
243 | help='fetch tags') | 242 | help='fetch tags') |
244 | p.add_option('--no-tags', | 243 | p.add_option('--no-tags', |
245 | dest='tags', action='store_false', | 244 | dest='tags', action='store_false', |
246 | help="don't fetch tags") | 245 | help="don't fetch tags (default)") |
247 | p.add_option('--optimized-fetch', | 246 | p.add_option('--optimized-fetch', |
248 | dest='optimized_fetch', action='store_true', | 247 | dest='optimized_fetch', action='store_true', |
249 | help='only fetch projects fixed to sha1 if revision does not exist locally') | 248 | help='only fetch projects fixed to sha1 if revision does not exist locally') |