diff --git a/git-push-all.bat b/git-push-all.bat index 40fcbd8..b5de472 100644 --- a/git-push-all.bat +++ b/git-push-all.bat @@ -39,7 +39,7 @@ for /d %%o in (*) do ( for /d %%g in (*) do ( if exist %%g\.git ( pushd %%g - echo ---- git adding/commiting/pushing [%BASEDIR%\%%o\%%g] ---- + echo ---- git add-commit-push [%BASEDIR%\%%o\%%g] ---- git add . && git commit -m 'updated' && git push echo; popd diff --git a/git-push-all.sh b/git-push-all.sh index e30c3bc..3b5b0bd 100755 --- a/git-push-all.sh +++ b/git-push-all.sh @@ -42,9 +42,9 @@ do do if [ -d "$repo/.git" ] then - echo "---- git pushing [`pwd`/$repo] ----" + echo "---- git add-commit-push [`pwd`/$repo] ----" cd "$repo" - git push + git add . && git commit -m 'updated' && git push echo "" cd .. fi