diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2015-05-29 18:31:08 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2015-05-29 18:31:08 +0200 |
commit | 75cb85e0cfa66480492b80ada19bd5a02ea12305 (patch) | |
tree | 78b4761ae9421cb012bc2b92b600ed1830c0be5e /push.sh |
Add git helper scripts
Diffstat (limited to 'push.sh')
-rwxr-xr-x | push.sh | 31 |
1 files changed, 31 insertions, 0 deletions
@@ -0,0 +1,31 @@ +#! /bin/sh + +. etc/git/modules + +wd=`pwd` +br=$1 + +for i in $modules; do + echo "push $i" 1>&2 + cd $i + + if [ -z "$1" ]; then + br=`git symbolic-ref -q HEAD` + br=`echo $br | sed -e 's%^refs/heads/%%'` + fi + + # Also push tags if we are pushing master. + # + if [ "$br" = "master" ]; then + git push --tags origin master + else + git push $ops origin $1 + fi + + if [ $? -ne 0 ]; then + echo "push FAILED" 1>&2 + exit 1 + fi + + cd $wd +done |