diff options
author | Christian Couder <chriscool@tuxfamily.org> | 2007-03-26 06:14:40 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-03-25 23:14:06 -0700 |
commit | c0ce981f5ebfd02463ff697b2fca52c7a54b0625 (patch) | |
tree | b95c29149850610e6b0ecf279129d1c35312a885 /git-bisect.sh | |
parent | 52c813f22fef784c0c66fb3cb18217489cbacf3a (diff) | |
download | git-c0ce981f5ebfd02463ff697b2fca52c7a54b0625.tar.gz |
Bisect: Use "git-show-ref --verify" when reseting.
Signed-off-by: Christian Couder <chriscool@tuxfamily.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-bisect.sh')
-rwxr-xr-x | git-bisect.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-bisect.sh b/git-bisect.sh index 936b4a4b83..fda1712a08 100755 --- a/git-bisect.sh +++ b/git-bisect.sh @@ -173,7 +173,7 @@ bisect_reset() { else branch=master fi ;; - 1) test -f "$GIT_DIR/refs/heads/$1" || { + 1) git-show-ref --verify --quiet -- "refs/heads/$1" || { echo >&2 "$1 does not seem to be a valid branch" exit 1 } |