]> git.mxchange.org Git - jprojects-scripts.git/blobdiff - push-stick.sh
Continued:
[jprojects-scripts.git] / push-stick.sh
index d90e0f6e156ed26b8b60e177e71c24fb824edf27..3c02302d81210e9e45b47985dbb25872b3a2ac43 100755 (executable)
@@ -40,9 +40,13 @@ for project in ${LIST}; do
                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
                if [ -n "$2" ]
@@ -51,13 +55,25 @@ for project in ${LIST}; do
                fi
 
                git push ${FORCE} --all upstream || exit 255
+       elif [ "$1" = "o" ]
+       then
+               if [ -n "$2" ]
+               then
+                       git push origin :"$2"
+               fi
+
+               git push ${FORCE} --all origin || exit 255
        else
                if [ -n "$2" ]
                then
                        git push origin :"$2"
+                       echo "$0: Syncing ..."
+                       sync
                fi
 
-               git push ${FORCE} --all || exit 255
+               git push ${FORCE} --all
+               echo "$0: Syncing ..."
+               sync
        fi
 done