fate: Be silent when switching to Git branch

This commit is contained in:
Diego Biurrun 2016-02-19 22:05:07 +01:00
parent 8d918a98aa
commit 8caadfc53d

View File

@ -37,7 +37,7 @@ checkout(){
update()(
cd ${src} || return
case "$repo" in
git:*) git fetch --force; git reset --hard "origin/$branch" ;;
git:*) git fetch --force; git reset --quiet --hard "origin/$branch" ;;
esac
)