diff options
author | Junio C Hamano <junkio@cox.net> | 2006-01-11 00:20:25 -0800 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-01-11 15:36:07 -0800 |
commit | 87758f975b04233ba058750f7ea8ce63bb67297f (patch) | |
tree | 997493ba5329186ef517fc5f2f178f5dab0d3080 | |
parent | name-rev: do not omit leading components of ref name. (diff) | |
download | tgif-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/show-branch.c b/show-branch.c index 15b1968781..1935c448f4 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; |