Use "git checkout -q" in git-bisect
authorJunio C Hamano <junkio@cox.net>
Fri, 2 Feb 2007 05:47:34 +0000 (21:47 -0800)
committerJunio C Hamano <junkio@cox.net>
Fri, 2 Feb 2007 05:47:34 +0000 (21:47 -0800)
Converts one use of git-checkout in git-bisect not to say "switching
to branch". It looks like all the other cases it is friendlier to
give notice to the end user.

Signed-off-by: Junio C Hamano <junkio@cox.net>
git-bisect.sh
index 6da31e87a01af9b883958b3b0bae4304bfa94520..e8d34189887cdbc2776ec2da039454c059705b65 100755 (executable)
@@ -152,7 +152,7 @@ bisect_next() {
        nr=$(eval "git-rev-list $rev $good -- $(cat $GIT_DIR/BISECT_NAMES)" | wc -l) || exit
        echo "Bisecting: $nr revisions left to test after this"
        echo "$rev" > "$GIT_DIR/refs/heads/new-bisect"
-       git checkout new-bisect || exit
+       git checkout -q new-bisect || exit
        mv "$GIT_DIR/refs/heads/new-bisect" "$GIT_DIR/refs/heads/bisect" &&
        GIT_DIR="$GIT_DIR" git-symbolic-ref HEAD refs/heads/bisect
        git-show-branch "$rev"