Skip to content

Commit

Permalink
improve checkout message when asking for same branch
Browse files Browse the repository at this point in the history
Change the feedback message if doing 'git checkout foo' when already on
branch "foo".

Signed-off-by: Nicolas Pitre <nico@cam.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
  • Loading branch information
Nicolas Pitre authored and Junio C Hamano committed Mar 21, 2007
1 parent ac54c27 commit 5721685
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion git-checkout.sh
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,13 @@ if [ "$?" -eq 0 ]; then
if test -n "$branch"
then
GIT_DIR="$GIT_DIR" git-symbolic-ref -m "checkout: moving to $branch" HEAD "refs/heads/$branch"
if test -z "$quiet"
if test -n "$quiet"
then
true # nothing
elif test "refs/heads/$branch" = "$oldbranch"
then
echo >&2 "Already on branch \"$branch\""
else
echo >&2 "Switched to${newbranch:+ a new} branch \"$branch\""
fi
elif test -n "$detached"
Expand Down

0 comments on commit 5721685

Please sign in to comment.