diff options
author | Mike Frysinger <vapier@google.com> | 2021-04-13 14:57:40 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@google.com> | 2021-04-13 22:25:17 +0000 |
commit | 9180a07b8fb33d5ba0b82facf987b51ca7b15dc4 (patch) | |
tree | 4c815bea7136115bf382a1bb75b89b67bd39bd61 /repo | |
parent | f32f243ff8aaabe5287235015e1ce189da0123e3 (diff) | |
download | git-repo-9180a07b8fb33d5ba0b82facf987b51ca7b15dc4.tar.gz |
command: make --verbose/--quiet available to all subcommands
Add new CommonOptions entry points to move the existing --jobs to,
and relocate all --verbose/--quiet options to that. This provides
both a consistent interface for users as well as for code.
Change-Id: Ifaf83b88872421f4749b073c472b4a67ca6c0437
Reviewed-on: https://gerrit-review.googlesource.com/c/git-repo/+/303224
Reviewed-by: Raman Tenneti <rtenneti@google.com>
Tested-by: Mike Frysinger <vapier@google.com>
Diffstat (limited to 'repo')
-rwxr-xr-x | repo | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -281,6 +281,8 @@ def GetParser(gitc_init=False): | |||
281 | 281 | ||
282 | def InitParser(parser, gitc_init=False): | 282 | def InitParser(parser, gitc_init=False): |
283 | """Setup the CLI parser.""" | 283 | """Setup the CLI parser.""" |
284 | # NB: Keep in sync with command.py:_CommonOptions(). | ||
285 | |||
284 | # Logging. | 286 | # Logging. |
285 | group = parser.add_option_group('Logging options') | 287 | group = parser.add_option_group('Logging options') |
286 | group.add_option('-v', '--verbose', | 288 | group.add_option('-v', '--verbose', |