Make git-send-pack exit with error when some refs couldn't be pushed out
[git/dscho.git] / Documentation / git-grep.txt
blob017579348319477c6356fcfce309ce68746d6899
1 git-grep(1)
2 ===========
4 NAME
5 ----
6 git-grep - print lines matching a pattern
9 SYNOPSIS
10 --------
11 'git-grep' <option>... <pattern> <path>...
13 DESCRIPTION
14 -----------
15 Searches list of files `git-ls-files` produces for lines
16 containing a match to the given pattern.
19 OPTIONS
20 -------
21 <option>...::
22         Either an option to pass to `grep` or `git-ls-files`.
23         Some `grep` options, such as `-C` and `-m`, that take
24         parameters are known to `git-grep`.
26 <pattern>::
27         The pattern to look for.
29 <path>...::
31         Optional paths to limit the set of files to be searched;
32         passed to `git-ls-files`.
35 Author
36 ------
37 Written by Linus Torvalds <torvalds@osdl.org>
39 Documentation
40 --------------
41 Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>.
43 GIT
44 ---
45 Part of the gitlink:git[7] suite