summaryrefslogtreecommitdiffstats
path: root/subcmds/grep.py
diff options
context:
space:
mode:
authorMike Frysinger <vapier@google.com>2021-04-13 14:57:40 -0400
committerMike Frysinger <vapier@google.com>2021-04-13 22:25:17 +0000
commit9180a07b8fb33d5ba0b82facf987b51ca7b15dc4 (patch)
tree4c815bea7136115bf382a1bb75b89b67bd39bd61 /subcmds/grep.py
parentf32f243ff8aaabe5287235015e1ce189da0123e3 (diff)
downloadgit-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 'subcmds/grep.py')
-rw-r--r--subcmds/grep.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/subcmds/grep.py b/subcmds/grep.py
index 49feaf6b..9a4a8a36 100644
--- a/subcmds/grep.py
+++ b/subcmds/grep.py
@@ -82,8 +82,11 @@ contain a line that matches both expressions:
82 if value is not None: 82 if value is not None:
83 pt.append(value) 83 pt.append(value)
84 84
85 def _CommonOptions(self, p):
86 """Override common options slightly."""
87 super()._CommonOptions(p, opt_v=False)
88
85 def _Options(self, p): 89 def _Options(self, p):
86 super()._Options(p)
87 g = p.add_option_group('Sources') 90 g = p.add_option_group('Sources')
88 g.add_option('--cached', 91 g.add_option('--cached',
89 action='callback', callback=self._carry_option, 92 action='callback', callback=self._carry_option,