improve checkout message when asking for same branch
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>
This commit is contained in:
parent
ac54c277f0
commit
5721685699
@ -250,8 +250,13 @@ if [ "$?" -eq 0 ]; then
|
|||||||
if test -n "$branch"
|
if test -n "$branch"
|
||||||
then
|
then
|
||||||
GIT_DIR="$GIT_DIR" git-symbolic-ref -m "checkout: moving to $branch" HEAD "refs/heads/$branch"
|
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
|
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\""
|
echo >&2 "Switched to${newbranch:+ a new} branch \"$branch\""
|
||||||
fi
|
fi
|
||||||
elif test -n "$detached"
|
elif test -n "$detached"
|
||||||
|
Loading…
Reference in New Issue
Block a user