show-branch: handle [] globs as well.

Earlier only '?' and '*' signalled the command that what the
user has given is a glob pattern.  This prevented us to say:

	$ git show-branch 'v0.99.[0-3]'

Now we notice '[' as well, so the above would work.

Signed-off-by: Junio C Hamano <junkio@cox.net>
This commit is contained in:
Junio C Hamano 2006-01-11 00:20:25 -08:00
parent 2c817df25d
commit 87758f975b

View File

@ -492,7 +492,7 @@ static void append_one_rev(const char *av)
append_ref(av, revkey); append_ref(av, revkey);
return; return;
} }
if (strchr(av, '*') || strchr(av, '?')) { if (strchr(av, '*') || strchr(av, '?') || strchr(av, '[')) {
/* glob style match */ /* glob style match */
int saved_matches = ref_name_cnt; int saved_matches = ref_name_cnt;
match_ref_pattern = av; match_ref_pattern = av;