From: Nguyễn Thái Ngọc Duy Date: Fri, 27 Feb 2015 14:01:58 +0000 (+0700) Subject: grep: correct help string for --exclude-standard X-Git-Tag: v2.3.3~6^2 X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/77fdb8a82cc624bb3c720b87725abae4d0df5073?ds=inline;hp=--cc grep: correct help string for --exclude-standard 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 Signed-off-by: Junio C Hamano --- 77fdb8a82cc624bb3c720b87725abae4d0df5073 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")),