Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 1 | git-grep(1) |
| 2 | =========== |
| 3 | |
| 4 | NAME |
| 5 | ---- |
Junio C Hamano | 0107892 | 2006-03-10 00:31:47 | [diff] [blame] | 6 | git-grep - Print lines matching a pattern |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 7 | |
| 8 | |
| 9 | SYNOPSIS |
| 10 | -------- |
Junio C Hamano | 617fdb8 | 2006-05-16 02:14:21 | [diff] [blame] | 11 | [verse] |
| 12 | 'git-grep' [--cached] |
| 13 | [-a | --text] [-I] [-i | --ignore-case] [-w | --word-regexp] |
Junio C Hamano | 97efb00 | 2006-09-16 18:16:04 | [diff] [blame] | 14 | [-v | --invert-match] [-h|-H] [--full-name] |
Junio C Hamano | 9882a52 | 2007-04-27 08:22:22 | [diff] [blame] | 15 | [-E | --extended-regexp] [-G | --basic-regexp] |
| 16 | [-F | --fixed-strings] [-n] |
| 17 | [-l | --files-with-matches] [-L | --files-without-match] |
Junio C Hamano | fbe0052 | 2006-10-19 05:58:48 | [diff] [blame] | 18 | [-c | --count] [--all-match] |
Junio C Hamano | 617fdb8 | 2006-05-16 02:14:21 | [diff] [blame] | 19 | [-A <post-context>] [-B <pre-context>] [-C <context>] |
Junio C Hamano | 9882a52 | 2007-04-27 08:22:22 | [diff] [blame] | 20 | [-f <file>] [-e] <pattern> |
| 21 | [--and|--or|--not|(|)|-e <pattern>...] [<tree>...] |
Junio C Hamano | 617fdb8 | 2006-05-16 02:14:21 | [diff] [blame] | 22 | [--] [<path>...] |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 23 | |
| 24 | DESCRIPTION |
| 25 | ----------- |
Junio C Hamano | 617fdb8 | 2006-05-16 02:14:21 | [diff] [blame] | 26 | Look for specified patterns in the working tree files, blobs |
| 27 | registered in the index file, or given tree objects. |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 28 | |
| 29 | |
| 30 | OPTIONS |
| 31 | ------- |
Junio C Hamano | 617fdb8 | 2006-05-16 02:14:21 | [diff] [blame] | 32 | --cached:: |
| 33 | Instead of searching in the working tree files, check |
Junio C Hamano | 341071d | 2006-06-04 07:24:48 | [diff] [blame] | 34 | the blobs registered in the index file. |
Junio C Hamano | 617fdb8 | 2006-05-16 02:14:21 | [diff] [blame] | 35 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 36 | -a:: |
| 37 | --text:: |
Junio C Hamano | 617fdb8 | 2006-05-16 02:14:21 | [diff] [blame] | 38 | Process binary files as if they were text. |
| 39 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 40 | -i:: |
| 41 | --ignore-case:: |
Junio C Hamano | 617fdb8 | 2006-05-16 02:14:21 | [diff] [blame] | 42 | Ignore case differences between the patterns and the |
| 43 | files. |
| 44 | |
Junio C Hamano | 9882a52 | 2007-04-27 08:22:22 | [diff] [blame] | 45 | -I:: |
| 46 | Don't match the pattern in binary files. |
| 47 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 48 | -w:: |
| 49 | --word-regexp:: |
Junio C Hamano | 617fdb8 | 2006-05-16 02:14:21 | [diff] [blame] | 50 | Match the pattern only at word boundary (either begin at the |
| 51 | beginning of a line, or preceded by a non-word character; end at |
| 52 | the end of a line or followed by a non-word character). |
| 53 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 54 | -v:: |
| 55 | --invert-match:: |
Junio C Hamano | 617fdb8 | 2006-05-16 02:14:21 | [diff] [blame] | 56 | Select non-matching lines. |
| 57 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 58 | -h:: |
| 59 | -H:: |
Junio C Hamano | 97efb00 | 2006-09-16 18:16:04 | [diff] [blame] | 60 | By default, the command shows the filename for each |
| 61 | match. `-h` option is used to suppress this output. |
| 62 | `-H` is there for completeness and does not do anything |
| 63 | except it overrides `-h` given earlier on the command |
| 64 | line. |
| 65 | |
Junio C Hamano | 85e45fa | 2006-08-13 07:47:41 | [diff] [blame] | 66 | --full-name:: |
| 67 | When run from a subdirectory, the command usually |
| 68 | outputs paths relative to the current directory. This |
| 69 | option forces paths to be output relative to the project |
| 70 | top directory. |
| 71 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 72 | -E:: |
| 73 | --extended-regexp:: |
| 74 | -G:: |
| 75 | --basic-regexp:: |
Junio C Hamano | 617fdb8 | 2006-05-16 02:14:21 | [diff] [blame] | 76 | Use POSIX extended/basic regexp for patterns. Default |
| 77 | is to use basic regexp. |
| 78 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 79 | -F:: |
| 80 | --fixed-strings:: |
Junio C Hamano | 9882a52 | 2007-04-27 08:22:22 | [diff] [blame] | 81 | Use fixed strings for patterns (don't interpret pattern |
| 82 | as a regex). |
| 83 | |
Junio C Hamano | 617fdb8 | 2006-05-16 02:14:21 | [diff] [blame] | 84 | -n:: |
| 85 | Prefix the line number to matching lines. |
| 86 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 87 | -l:: |
| 88 | --files-with-matches:: |
| 89 | --name-only:: |
| 90 | -L:: |
| 91 | --files-without-match:: |
Junio C Hamano | 617fdb8 | 2006-05-16 02:14:21 | [diff] [blame] | 92 | Instead of showing every matched line, show only the |
| 93 | names of files that contain (or do not contain) matches. |
Junio C Hamano | 4f1d8c4 | 2008-03-03 02:01:16 | [diff] [blame] | 94 | For better compatibility with git-diff, --name-only is a |
Junio C Hamano | 074766f | 2008-02-22 22:57:06 | [diff] [blame] | 95 | synonym for --files-with-matches. |
Junio C Hamano | 617fdb8 | 2006-05-16 02:14:21 | [diff] [blame] | 96 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 97 | -c:: |
| 98 | --count:: |
Junio C Hamano | 617fdb8 | 2006-05-16 02:14:21 | [diff] [blame] | 99 | Instead of showing every matched line, show the number of |
| 100 | lines that match. |
| 101 | |
| 102 | -[ABC] <context>:: |
| 103 | Show `context` trailing (`A` -- after), or leading (`B` |
| 104 | -- before), or both (`C` -- context) lines, and place a |
Junio C Hamano | 341071d | 2006-06-04 07:24:48 | [diff] [blame] | 105 | line containing `--` between contiguous groups of |
Junio C Hamano | 617fdb8 | 2006-05-16 02:14:21 | [diff] [blame] | 106 | matches. |
| 107 | |
Junio C Hamano | 9882a52 | 2007-04-27 08:22:22 | [diff] [blame] | 108 | -<num>:: |
| 109 | A shortcut for specifying -C<num>. |
| 110 | |
Junio C Hamano | 617fdb8 | 2006-05-16 02:14:21 | [diff] [blame] | 111 | -f <file>:: |
| 112 | Read patterns from <file>, one per line. |
| 113 | |
Junio C Hamano | 3901ffb | 2006-06-26 23:46:53 | [diff] [blame] | 114 | -e:: |
| 115 | The next parameter is the pattern. This option has to be |
| 116 | used for patterns starting with - and should be used in |
Junio C Hamano | 0044202 | 2006-08-03 00:29:36 | [diff] [blame] | 117 | scripts passing user input to grep. Multiple patterns are |
| 118 | combined by 'or'. |
| 119 | |
Junio C Hamano | eb41599 | 2008-06-08 22:49:47 | [diff] [blame] | 120 | --and:: |
| 121 | --or:: |
| 122 | --not:: |
| 123 | ( ... ):: |
Junio C Hamano | f9771f6 | 2007-01-17 17:42:30 | [diff] [blame] | 124 | Specify how multiple patterns are combined using Boolean |
Junio C Hamano | 0044202 | 2006-08-03 00:29:36 | [diff] [blame] | 125 | expressions. `--or` is the default operator. `--and` has |
| 126 | higher precedence than `--or`. `-e` has to be used for all |
| 127 | patterns. |
Junio C Hamano | 3901ffb | 2006-06-26 23:46:53 | [diff] [blame] | 128 | |
Junio C Hamano | fbe0052 | 2006-10-19 05:58:48 | [diff] [blame] | 129 | --all-match:: |
| 130 | When giving multiple pattern expressions combined with `--or`, |
| 131 | this flag is specified to limit the match to files that |
| 132 | have lines to match all of them. |
| 133 | |
Junio C Hamano | 617fdb8 | 2006-05-16 02:14:21 | [diff] [blame] | 134 | `<tree>...`:: |
| 135 | Search blobs in the trees for specified patterns. |
| 136 | |
Junio C Hamano | 0044202 | 2006-08-03 00:29:36 | [diff] [blame] | 137 | \--:: |
Junio C Hamano | a6331a8 | 2006-01-22 07:50:33 | [diff] [blame] | 138 | Signals the end of options; the rest of the parameters |
| 139 | are <path> limiters. |
| 140 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 141 | |
Junio C Hamano | 0044202 | 2006-08-03 00:29:36 | [diff] [blame] | 142 | Example |
| 143 | ------- |
| 144 | |
| 145 | git grep -e \'#define\' --and \( -e MAX_PATH -e PATH_MAX \):: |
| 146 | Looks for a line that has `#define` and either `MAX_PATH` or |
| 147 | `PATH_MAX`. |
| 148 | |
Junio C Hamano | fbe0052 | 2006-10-19 05:58:48 | [diff] [blame] | 149 | git grep --all-match -e NODE -e Unexpected:: |
| 150 | Looks for a line that has `NODE` or `Unexpected` in |
| 151 | files that have lines that match both. |
| 152 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 153 | Author |
| 154 | ------ |
Junio C Hamano | 617fdb8 | 2006-05-16 02:14:21 | [diff] [blame] | 155 | Originally written by Linus Torvalds <torvalds@osdl.org>, later |
| 156 | revamped by Junio C Hamano. |
| 157 | |
Junio C Hamano | 1a4e841 | 2005-12-27 08:17:23 | [diff] [blame] | 158 | |
| 159 | Documentation |
| 160 | -------------- |
| 161 | Documentation by Junio C Hamano and the git-list <git@vger.kernel.org>. |
| 162 | |
| 163 | GIT |
| 164 | --- |
Junio C Hamano | f7c042d | 2008-06-06 22:50:53 | [diff] [blame] | 165 | Part of the linkgit:git[1] suite |