diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2015-02-27 21:01:58 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2015-02-27 12:22:41 -0800 |
commit | 77fdb8a82cc624bb3c720b87725abae4d0df5073 (patch) | |
tree | 454f498ff825971ce1cf41899862142edb50b632 /builtin | |
parent | 282616c72d1d08a77ca4fe1186cb708c38408d87 (diff) | |
download | git-77fdb8a82cc624bb3c720b87725abae4d0df5073.tar.gz |
grep: correct help string for --exclude-standardnd/grep-exclude-standard-help-fix
The current help string is about --no-exclude-standard. But "git grep -h"
would show --exclude-standard instead. Flip the string. See 0a93fb8
(grep: teach --untracked and --exclude-standard options - 2011-09-27)
for more info about these options.
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r-- | builtin/grep.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/grep.c b/builtin/grep.c index b8d440d0e0..36b0e2be19 100644 --- a/builtin/grep.c +++ b/builtin/grep.c @@ -643,7 +643,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")), |