X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;ds=sidebyside;f=push-stick.sh;h=02f28847856183ae55f04be937689d4e7a4b5ec7;hb=d6cbf6b26fb4109721bc6e11656672740147b708;hp=4b2938b0aff01eb69a76e379faa3536b5f24311f;hpb=36cba31551e2bb03205b52d11e91e1338424e132;p=jprojects-scripts.git diff --git a/push-stick.sh b/push-stick.sh index 4b2938b..02f2884 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." @@ -33,15 +34,19 @@ for project in ${LIST}; do git push daedalus :"$2" fi - git push --all daedalus || exit 255 + git push ${FORCE} --all daedalus || exit 255 elif [ "$1" = "t" ] then if [ -n "$2" ] then git push transport :"$2" + echo "$0: Syncing ..." + sync fi - git push --all transport || exit 255 + git push ${FORCE} --all transport || exit 255 + echo "$0: Syncing ..." + sync elif [ "$1" = "u" ] then if [ -n "$2" ] @@ -49,14 +54,18 @@ for project in ${LIST}; do git push upstream :"$2" fi - git push --all upstream || exit 255 + git push ${FORCE} --all upstream || exit 255 else if [ -n "$2" ] then git push origin :"$2" + echo "$0: Syncing ..." + sync fi - git push --all || exit 255 + git push ${FORCE} --all || exit 255 + echo "$0: Syncing ..." + sync fi done