X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=push-stick.sh;h=1fcc7dcde7fe754bbb929e822a995a61aecff977;hb=2aa47ec9c422518fa4d8bc07ae57989692c66506;hp=1e0b4b58712994bbe947d2ddf7376f8856a8ee08;hpb=201b1dfb80b932f7d3ecc511b45b7426b7df297a;p=jprojects-scripts.git diff --git a/push-stick.sh b/push-stick.sh index 1e0b4b5..1fcc7dc 100755 --- a/push-stick.sh +++ b/push-stick.sh @@ -2,14 +2,15 @@ . ./.jprojects.sh || exit 255 -TARGETS="d t u" +TARGETS="o d t u" +FORCE="--force" if [ "$1" = "a" ] then cd "${JPROJECTS_HOME}" for TARGET in ${TARGETS}; do echo "$0: Pushing for target '${TARGET}' ..." - $0 "${TARGET}" "1" + $0 "${TARGET}" "$2" done echo "$0: Pushed to all targets." @@ -28,15 +29,43 @@ for project in ${LIST}; do if [ "$1" = "d" ] then - git push --all daedalus || exit 255 + if [ -n "$2" ] + then + git push daedalus :"$2" + fi + + git push ${FORCE} --all daedalus || exit 255 elif [ "$1" = "t" ] then - git push --all transport || exit 255 + if [ -n "$2" ] + then + git push transport :"$2" + echo "$0: Syncing ..." + sync + fi + + git push ${FORCE} --all transport || exit 255 + echo "$0: Syncing ..." + sync elif [ "$1" = "u" ] then - git push --all upstream || exit 255 + if [ -n "$2" ] + then + git push upstream :"$2" + fi + + git push ${FORCE} --all upstream || exit 255 else - git push --all || exit 255 + if [ -n "$2" ] + then + git push origin :"$2" + echo "$0: Syncing ..." + sync + fi + + git push ${FORCE} --all + echo "$0: Syncing ..." + sync fi done