git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] grep: do not use --index in the short usage output
@ 2011-09-15 18:26 Bert Wesarg
  2011-09-15 18:26 ` [PATCH 2/2] grep --no-index: don't use git standard exclusions Bert Wesarg
  0 siblings, 1 reply; 8+ messages in thread
From: Bert Wesarg @ 2011-09-15 18:26 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: git, Bert Wesarg

Utilize the PARSE_OPT_NEGHELP option to show --no-index in the usage
generated by parse-options.

Signed-off-by: Bert Wesarg <bert.wesarg@googlemail.com>
---
 builtin/grep.c |    5 +++--
 1 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/builtin/grep.c b/builtin/grep.c
index 1c359c2..e0562b0 100644
--- a/builtin/grep.c
+++ b/builtin/grep.c
@@ -774,8 +774,9 @@ int cmd_grep(int argc, const char **argv, const char *prefix)
 	struct option options[] = {
 		OPT_BOOLEAN(0, "cached", &cached,
 			"search in index instead of in the work tree"),
-		OPT_BOOLEAN(0, "index", &use_index,
-			"--no-index finds in contents not managed by git"),
+		{ OPTION_BOOLEAN, 0, "index", &use_index, NULL,
+			"finds in contents not managed by git",
+			PARSE_OPT_NOARG | PARSE_OPT_NEGHELP },
 		OPT_GROUP(""),
 		OPT_BOOLEAN('v', "invert-match", &opt.invert,
 			"show non-matching lines"),
-- 
1.7.6.789.gb4599

^ permalink raw reply related	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2011-09-28 20:01 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-15 18:26 [PATCH 1/2] grep: do not use --index in the short usage output Bert Wesarg
2011-09-15 18:26 ` [PATCH 2/2] grep --no-index: don't use git standard exclusions Bert Wesarg
2011-09-15 19:44   ` Junio C Hamano
2011-09-16 18:23     ` Bert Wesarg
2011-09-27 22:21       ` Re* " Junio C Hamano
2011-09-27 22:22         ` [PATCH 2/2] grep: --untracked and --exclude tests Junio C Hamano
2011-09-28 19:19         ` Re* [PATCH 2/2] grep --no-index: don't use git standard exclusions Bert Wesarg
2011-09-28 20:01           ` Junio C Hamano

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).