Fourth batch
[git/raj.git] / Documentation / config / grep.txt
blob44abe45a7cad1625e6b96a5603397ab957a873ab
1 grep.lineNumber::
2         If set to true, enable `-n` option by default.
4 grep.column::
5         If set to true, enable the `--column` option by default.
7 grep.patternType::
8         Set the default matching behavior. Using a value of 'basic', 'extended',
9         'fixed', or 'perl' will enable the `--basic-regexp`, `--extended-regexp`,
10         `--fixed-strings`, or `--perl-regexp` option accordingly, while the
11         value 'default' will return to the default matching behavior.
13 grep.extendedRegexp::
14         If set to true, enable `--extended-regexp` option by default. This
15         option is ignored when the `grep.patternType` option is set to a value
16         other than 'default'.
18 grep.threads::
19         Number of grep worker threads to use.
20         See `grep.threads` in linkgit:git-grep[1] for more information.
22 grep.fallbackToNoIndex::
23         If set to true, fall back to git grep --no-index if git grep
24         is executed outside of a git repository.  Defaults to false.