summaryrefslogtreecommitdiffstats
path: root/git-grep.txt
diff options
context:
space:
mode:
authorJunio C Hamano <junio@hera.kernel.org>2006-10-19 05:58:48 +0000
committerJunio C Hamano <junio@hera.kernel.org>2006-10-19 05:58:48 +0000
commitfbe0052a6097e716bc4ad9676c3c4d6f472a1d8d (patch)
treea926e3dc0d853abf06ca1e0de4ae19340c8a5c72 /git-grep.txt
parent21c0b42d4578867273ad6bc14fb225d61aa6f67e (diff)
downloadgit-htmldocs-fbe0052a6097e716bc4ad9676c3c4d6f472a1d8d.tar.gz
Autogenerated HTML docs for v1.4.3-g72bb
Diffstat (limited to 'git-grep.txt')
-rw-r--r--git-grep.txt11
1 files changed, 10 insertions, 1 deletions
diff --git a/git-grep.txt b/git-grep.txt
index d8af4d961..bfbece986 100644
--- a/git-grep.txt
+++ b/git-grep.txt
@@ -14,7 +14,7 @@ SYNOPSIS
[-v | --invert-match] [-h|-H] [--full-name]
[-E | --extended-regexp] [-G | --basic-regexp] [-F | --fixed-strings]
[-n] [-l | --files-with-matches] [-L | --files-without-match]
- [-c | --count]
+ [-c | --count] [--all-match]
[-A <post-context>] [-B <pre-context>] [-C <context>]
[-f <file>] [-e] <pattern> [--and|--or|--not|(|)|-e <pattern>...]
[<tree>...]
@@ -96,6 +96,11 @@ OPTIONS
higher precedence than `--or`. `-e` has to be used for all
patterns.
+--all-match::
+ When giving multiple pattern expressions combined with `--or`,
+ this flag is specified to limit the match to files that
+ have lines to match all of them.
+
`<tree>...`::
Search blobs in the trees for specified patterns.
@@ -111,6 +116,10 @@ git grep -e \'#define\' --and \( -e MAX_PATH -e PATH_MAX \)::
Looks for a line that has `#define` and either `MAX_PATH` or
`PATH_MAX`.
+git grep --all-match -e NODE -e Unexpected::
+ Looks for a line that has `NODE` or `Unexpected` in
+ files that have lines that match both.
+
Author
------
Originally written by Linus Torvalds <torvalds@osdl.org>, later