aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2006-01-11 00:20:25 -0800
committerJunio C Hamano <junkio@cox.net>2006-01-11 15:36:07 -0800
commit87758f975b04233ba058750f7ea8ce63bb67297f (patch)
tree997493ba5329186ef517fc5f2f178f5dab0d3080
parent2c817df25d54b557d6cac0800cacfd0a255cd56d (diff)
downloadgit-87758f975b04233ba058750f7ea8ce63bb67297f.tar.gz
git-87758f975b04233ba058750f7ea8ce63bb67297f.tar.xz
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>
-rw-r--r--show-branch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/show-branch.c b/show-branch.c
index 15b196878..1935c448f 100644
--- a/show-branch.c
+++ b/show-branch.c
@@ -492,7 +492,7 @@ static void append_one_rev(const char *av)
append_ref(av, revkey);
return;
}
- if (strchr(av, '*') || strchr(av, '?')) {
+ if (strchr(av, '*') || strchr(av, '?') || strchr(av, '[')) {
/* glob style match */
int saved_matches = ref_name_cnt;
match_ref_pattern = av;