diff options
Diffstat (limited to 'repo')
| -rwxr-xr-x | repo | 8 |
1 files changed, 7 insertions, 1 deletions
| @@ -324,6 +324,11 @@ def GetParser(gitc_init=False): | |||
| 324 | 'each project. See git archive.') | 324 | 'each project. See git archive.') |
| 325 | group.add_option('--submodules', action='store_true', | 325 | group.add_option('--submodules', action='store_true', |
| 326 | help='sync any submodules associated with the manifest repo') | 326 | help='sync any submodules associated with the manifest repo') |
| 327 | group.add_option('--use-superproject', action='store_true', default=None, | ||
| 328 | help='use the manifest superproject to sync projects') | ||
| 329 | group.add_option('--no-use-superproject', action='store_false', | ||
| 330 | dest='use_superproject', | ||
| 331 | help='disable use of manifest superprojects') | ||
| 327 | group.add_option('-g', '--groups', default='default', | 332 | group.add_option('-g', '--groups', default='default', |
| 328 | help='restrict manifest projects to ones with specified ' | 333 | help='restrict manifest projects to ones with specified ' |
| 329 | 'group(s) [default|all|G1,G2,G3|G4,-G5,-G6]', | 334 | 'group(s) [default|all|G1,G2,G3|G4,-G5,-G6]', |
| @@ -333,7 +338,8 @@ def GetParser(gitc_init=False): | |||
| 333 | 'platform group [auto|all|none|linux|darwin|...]', | 338 | 'platform group [auto|all|none|linux|darwin|...]', |
| 334 | metavar='PLATFORM') | 339 | metavar='PLATFORM') |
| 335 | group.add_option('--clone-bundle', action='store_true', | 340 | group.add_option('--clone-bundle', action='store_true', |
| 336 | help='enable use of /clone.bundle on HTTP/HTTPS (default if not --partial-clone)') | 341 | help='enable use of /clone.bundle on HTTP/HTTPS ' |
| 342 | '(default if not --partial-clone)') | ||
| 337 | group.add_option('--no-clone-bundle', | 343 | group.add_option('--no-clone-bundle', |
| 338 | dest='clone_bundle', action='store_false', | 344 | dest='clone_bundle', action='store_false', |
| 339 | help='disable use of /clone.bundle on HTTP/HTTPS (default if --partial-clone)') | 345 | help='disable use of /clone.bundle on HTTP/HTTPS (default if --partial-clone)') |
