From: Junio C Hamano Date: Fri, 23 Mar 2007 20:15:21 +0000 (-0700) Subject: git-bisect: typofix X-Git-Tag: v1.5.1-rc2~23 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=673e58389fd8531ee1ac191350c2c10b1656486e;p=git.git 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 --- diff --git a/git-bisect.sh b/git-bisect.sh index 3043f6551..8eaea7cd1 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