diff options
author | Shawn O. Pearce <sop@google.com> | 2009-04-18 11:28:57 -0700 |
---|---|---|
committer | Shawn O. Pearce <sop@google.com> | 2009-04-18 11:28:57 -0700 |
commit | fd89b67f5c3ad94f050509e1421c73aff380c0a7 (patch) | |
tree | 889c0c8d1aac82009348b687d1b965baab1be371 /subcmds/sync.py | |
parent | a490f03dc23792a86bbe5b2b8c89b32f39774c80 (diff) | |
download | git-repo-fd89b67f5c3ad94f050509e1421c73aff380c0a7.tar.gz |
Clarify options that control the repo executable version
Signed-off-by: Shawn O. Pearce <sop@google.com>
Diffstat (limited to 'subcmds/sync.py')
-rw-r--r-- | subcmds/sync.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/subcmds/sync.py b/subcmds/sync.py index 55ffca3e..b5cc604e 100644 --- a/subcmds/sync.py +++ b/subcmds/sync.py | |||
@@ -66,10 +66,11 @@ revision is temporarily needed. | |||
66 | dest='detach_head', action='store_true', | 66 | dest='detach_head', action='store_true', |
67 | help='detach projects back to manifest revision') | 67 | help='detach projects back to manifest revision') |
68 | 68 | ||
69 | p.add_option('--no-repo-verify', | 69 | g = p.add_option_group('repo Version options') |
70 | g.add_option('--no-repo-verify', | ||
70 | dest='no_repo_verify', action='store_true', | 71 | dest='no_repo_verify', action='store_true', |
71 | help='do not verify repo source code') | 72 | help='do not verify repo source code') |
72 | p.add_option('--repo-upgraded', | 73 | g.add_option('--repo-upgraded', |
73 | dest='repo_upgraded', action='store_true', | 74 | dest='repo_upgraded', action='store_true', |
74 | help=SUPPRESS_HELP) | 75 | help=SUPPRESS_HELP) |
75 | 76 | ||