git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] grep: Add the option '--line-number'
@ 2011-03-28 18:11 Joe Ratterman
  2011-03-28 21:02 ` Junio C Hamano
  0 siblings, 1 reply; 2+ messages in thread
From: Joe Ratterman @ 2011-03-28 18:11 UTC (permalink / raw)
  To: gitster, git; +Cc: Joe Ratterman

This is a synonym for the existing '-n' option, matching GNU grep.

Signed-off-by: Joe Ratterman <jratt0@gmail.com>
---
 Documentation/git-grep.txt |    1 +
 builtin/grep.c             |    2 +-
 2 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/Documentation/git-grep.txt b/Documentation/git-grep.txt
index 71668e0..c446590 100644
--- a/Documentation/git-grep.txt
+++ b/Documentation/git-grep.txt
@@ -102,6 +102,7 @@ OPTIONS
 	as a regex).
 
 -n::
+--line-number::
 	Prefix the line number to matching lines.
 
 -l::
diff --git a/builtin/grep.c b/builtin/grep.c
index 1d35f76..c51e9f1 100644
--- a/builtin/grep.c
+++ b/builtin/grep.c
@@ -874,7 +874,7 @@ int cmd_grep(int argc, const char **argv, const char *prefix)
 		OPT_BOOLEAN('F', "fixed-strings", &opt.fixed,
 			"interpret patterns as fixed strings"),
 		OPT_GROUP(""),
-		OPT_BOOLEAN('n', NULL, &opt.linenum, "show line numbers"),
+		OPT_BOOLEAN('n', "line-number", &opt.linenum, "show line numbers"),
 		OPT_NEGBIT('h', NULL, &opt.pathname, "don't show filenames", 1),
 		OPT_BIT('H', NULL, &opt.pathname, "show filenames", 1),
 		OPT_NEGBIT(0, "full-name", &opt.relative,
-- 
1.7.4.1.4.g0ea33

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

* Re: [PATCH] grep: Add the option '--line-number'
  2011-03-28 18:11 [PATCH] grep: Add the option '--line-number' Joe Ratterman
@ 2011-03-28 21:02 ` Junio C Hamano
  0 siblings, 0 replies; 2+ messages in thread
From: Junio C Hamano @ 2011-03-28 21:02 UTC (permalink / raw)
  To: Joe Ratterman; +Cc: git

Thanks, will queue.

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

end of thread, other threads:[~2011-03-28 21:02 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-28 18:11 [PATCH] grep: Add the option '--line-number' Joe Ratterman
2011-03-28 21:02 ` 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).