summaryrefslogtreecommitdiff
path: root/Documentation
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-08-13 02:16:33 (GMT)
committerJunio C Hamano <junkio@cox.net>2006-08-13 02:16:33 (GMT)
commitcd5fff64e6014f9c1d4c2bc113fde19bd45d2db7 (patch)
tree550703b7b5f225609099a0dc3f2529ad5eda61e1 /Documentation
parentbb266cb11842f76712ebff1d8b1bd086dc65337f (diff)
parent0d042fecf2f4130717d198f9cc2d792e72370bda (diff)
downloadgit-cd5fff64e6014f9c1d4c2bc113fde19bd45d2db7.zip
git-cd5fff64e6014f9c1d4c2bc113fde19bd45d2db7.tar.gz
git-cd5fff64e6014f9c1d4c2bc113fde19bd45d2db7.tar.bz2
Merge branch 'jc/grep'
Diffstat (limited to 'Documentation')
-rw-r--r--Documentation/git-grep.txt8
1 files changed, 7 insertions, 1 deletions
diff --git a/Documentation/git-grep.txt b/Documentation/git-grep.txt
index dc76833..7545dd9 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.