summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJunio C Hamano <junkio@cox.net>2007-03-23 20:15:21 (GMT)
committerJunio C Hamano <junkio@cox.net>2007-03-23 20:15:21 (GMT)
commit673e58389fd8531ee1ac191350c2c10b1656486e (patch)
tree7474ec8b90ef3ca10eee537de4788b4c2b212d58
parentabba9dbbf450d4037a5e2054250f197169ac63eb (diff)
downloadgit-673e58389fd8531ee1ac191350c2c10b1656486e.zip
git-673e58389fd8531ee1ac191350c2c10b1656486e.tar.gz
git-673e58389fd8531ee1ac191350c2c10b1656486e.tar.bz2
git-bisect: typofix
The branch you are on while bisecting is always "bisect", and checking for "refs/heads/bisect*" is wrong. Only check if it is exactly "refs/heads/bisect". Signed-off-by: Junio C Hamano <junkio@cox.net>
-rwxr-xr-xgit-bisect.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-bisect.sh b/git-bisect.sh
index 3043f65..8eaea7c 100755
--- a/git-bisect.sh
+++ b/git-bisect.sh
@@ -50,7 +50,7 @@ bisect_start() {
head=$(GIT_DIR="$GIT_DIR" git-symbolic-ref HEAD) ||
die "Bad HEAD - I need a symbolic ref"
case "$head" in
- refs/heads/bisect*)
+ refs/heads/bisect)
if [ -s "$GIT_DIR/head-name" ]; then
branch=`cat "$GIT_DIR/head-name"`
else