From: Nguyễn Thái Ngọc Duy Date: Mon, 21 Jan 2013 13:00:49 +0000 (+0700) Subject: grep: avoid accepting ambiguous revision X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=0b0ecaac2ad984599923999d6d4c32e6111bb73f;p=git.git grep: avoid accepting ambiguous revision Unlike other commands that take both revs and pathspecs without "--" disamiguators only when the boundary is clear, "git grep" treated what can be interpreted as a rev as-is, without making sure that it could also have meant a pathspec. E.g. $ git grep -e foo master when 'master' is in the working tree, should have triggered an ambiguity error, but it didn't, and searched in the tree of the commit named by 'master'. Signed-off-by: Nguyễn Thái Ngọc Duy Signed-off-by: Junio C Hamano --- diff --git a/builtin/grep.c b/builtin/grep.c index 0e1b6c860..802596498 100644 --- a/builtin/grep.c +++ b/builtin/grep.c @@ -823,6 +823,8 @@ int cmd_grep(int argc, const char **argv, const char *prefix) struct object *object = parse_object(sha1); if (!object) die(_("bad object %s"), arg); + if (!seen_dashdash) + verify_non_filename(prefix, arg); add_object_array(object, arg, &list); continue; }