u
This commit is contained in:
parent
c6bdadf16f
commit
1ea3255769
@ -39,7 +39,7 @@ for /d %%o in (*) do (
|
|||||||
for /d %%g in (*) do (
|
for /d %%g in (*) do (
|
||||||
if exist %%g\.git (
|
if exist %%g\.git (
|
||||||
pushd %%g
|
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
|
git add . && git commit -m 'updated' && git push
|
||||||
echo;
|
echo;
|
||||||
popd
|
popd
|
||||||
|
@ -42,9 +42,9 @@ do
|
|||||||
do
|
do
|
||||||
if [ -d "$repo/.git" ]
|
if [ -d "$repo/.git" ]
|
||||||
then
|
then
|
||||||
echo "---- git pushing [`pwd`/$repo] ----"
|
echo "---- git add-commit-push [`pwd`/$repo] ----"
|
||||||
cd "$repo"
|
cd "$repo"
|
||||||
git push
|
git add . && git commit -m 'updated' && git push
|
||||||
echo ""
|
echo ""
|
||||||
cd ..
|
cd ..
|
||||||
fi
|
fi
|
||||||
|
Loading…
Reference in New Issue
Block a user