Skip to content

Commit

Permalink
git_update.sh: Use git checkout --quiet
Browse files Browse the repository at this point in the history
  • Loading branch information
KA2107 committed Aug 18, 2013
1 parent 4ccf8e0 commit 1408113
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions git/git_update.sh
Expand Up @@ -23,7 +23,7 @@ _RUN()
git hg pull
echo

git checkout master
git checkout --quiet master
echo

git pull --rebase hg master
Expand All @@ -48,7 +48,7 @@ _RUN()
git bzr sync bzr/master
echo

git checkout master
git checkout --quiet master
echo

git merge bzr/master
Expand All @@ -70,7 +70,7 @@ _RUN()
git svn rebase --verbose
echo

git checkout master
git checkout --quiet master
echo

git pull --rebase git-svn || git pull --rebase origin svn/trunk
Expand Down Expand Up @@ -128,7 +128,7 @@ NOEXEC
git reset --hard
echo

git checkout "${_GIT_REMOTE_BRANCH}"
git checkout --quiet "${_GIT_REMOTE_BRANCH}"
echo

git pull --rebase origin "${_GIT_REMOTE_BRANCH}"
Expand All @@ -150,7 +150,7 @@ NOEXEC

#################

git checkout "${_GIT_REMOTE_BRANCH}"
git checkout --quiet "${_GIT_REMOTE_BRANCH}"
echo

#################
Expand Down

0 comments on commit 1408113

Please sign in to comment.