diff options
author | Junio C Hamano <junkio@cox.net> | 2006-08-11 00:44:42 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-08-11 19:08:10 -0700 |
commit | 0d042fecf2f4130717d198f9cc2d792e72370bda (patch) | |
tree | 45f19a371877c20fcae9166795e17143863a0982 /Documentation | |
parent | git-sh-setup: do not use repo-config to test the git directory (diff) | |
download | tgif-0d042fecf2f4130717d198f9cc2d792e72370bda.tar.xz |
git-grep: show pathnames relative to the current directory
By default, the command shows pathnames relative to the current
directory. Use --full-name (the same flag to do so in ls-files)
if you want to see the full pathname relative to the project root.
This makes it very pleasant to run in Emacs compilation (or
"grep-find") buffer.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/git-grep.txt | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/Documentation/git-grep.txt b/Documentation/git-grep.txt index dc7683383c..7545dd9a3e 100644 --- a/Documentation/git-grep.txt +++ b/Documentation/git-grep.txt @@ -11,7 +11,7 @@ SYNOPSIS [verse] 'git-grep' [--cached] [-a | --text] [-I] [-i | --ignore-case] [-w | --word-regexp] - [-v | --invert-match] + [-v | --invert-match] [--full-name] [-E | --extended-regexp] [-G | --basic-regexp] [-F | --fixed-strings] [-n] [-l | --files-with-matches] [-L | --files-without-match] [-c | --count] @@ -47,6 +47,12 @@ OPTIONS -v | --invert-match:: Select non-matching lines. +--full-name:: + When run from a subdirectory, the command usually + outputs paths relative to the current directory. This + option forces paths to be output relative to the project + top directory. + -E | --extended-regexp | -G | --basic-regexp:: Use POSIX extended/basic regexp for patterns. Default is to use basic regexp. |