mirror of
https://github.com/git/git.git
synced 2024-10-30 13:57:54 +01:00
Merge branch 'nd/grep-exclude-standard-help-fix' into maint
Description given by "grep -h" for its --exclude-standard option was phrased poorly. * nd/grep-exclude-standard-help-fix: grep: correct help string for --exclude-standard
This commit is contained in:
commit
2408f3b74b
1 changed files with 1 additions and 1 deletions
|
@ -641,7 +641,7 @@ int cmd_grep(int argc, const char **argv, const char *prefix)
|
|||
OPT_BOOL(0, "untracked", &untracked,
|
||||
N_("search in both tracked and untracked files")),
|
||||
OPT_SET_INT(0, "exclude-standard", &opt_exclude,
|
||||
N_("search also in ignored files"), 1),
|
||||
N_("ignore files specified via '.gitignore'"), 1),
|
||||
OPT_GROUP(""),
|
||||
OPT_BOOL('v', "invert-match", &opt.invert,
|
||||
N_("show non-matching lines")),
|
||||
|
|
Loading…
Reference in a new issue