From: Simon Ruderich Date: Sat, 20 Nov 2010 15:15:28 +0000 (+0100) Subject: bin/git-update.sh: Also push tags to remotes. X-Git-Url: https://ruderich.org/simon/gitweb/?a=commitdiff_plain;h=be2c42a1aedc84e0e510b8b0296bcebc587a4816;p=config%2Fdotfiles.git bin/git-update.sh: Also push tags to remotes. --- diff --git a/bin/git-update.sh b/bin/git-update.sh index 83080b9..e9c0aba 100755 --- a/bin/git-update.sh +++ b/bin/git-update.sh @@ -18,6 +18,7 @@ git remote update 2>&1 | grep -v Fetching # Push all local changes to remote(s). for remote in `git remote`; do git push $remote 2>&1 | grep -v 'Everything up-to-date' + git push --tags $remote 2>&1 | grep -v 'Everything up-to-date' done # Show unmerged changes. git branch -rv --color --no-merged