'updated'
This commit is contained in:
parent
fc6e8add02
commit
c6bdadf16f
@ -28,7 +28,7 @@ echo;
|
||||
for /d %%o in (*) do (
|
||||
@REM windows的链接文件会造成路径错误,从而终止该循环,从而导致下一轮乃至所有循环的工作目录错误。因此要过滤掉 .vscode 这个符号链接目录。
|
||||
if not %%o == .vscode (
|
||||
@REM 每次 git pull 都会造成 .git 目录下某些文件变化,导致云端不断自动同步。因此过滤掉云盘的目录不做更新。
|
||||
@REM 如果同时使用了 GIT 和 云盘进行管理,每次 git pull 都会造成 .git 目录下某些文件变化,导致云盘不断自动同步。因此过滤掉云盘的目录不做更新。
|
||||
echo %%o | findstr "=" >NUL && (
|
||||
echo !!!!!!!! omitting [%BASEDIR%\%%o] !!!!!!!!
|
||||
echo;
|
||||
|
58
git-push-all.bat
Normal file
58
git-push-all.bat
Normal file
@ -0,0 +1,58 @@
|
||||
@echo off
|
||||
|
||||
echo *** Testing Path [%1] [D:\faronear] [C:\faronear] [%HOMEDRIVE%%HOMEPATH%\faronear] [../..]
|
||||
|
||||
@ if not "%1" == "" (
|
||||
set BASEDIR=%1
|
||||
) else (if exist D:\faronear (
|
||||
set BASEDIR=D:\faronear
|
||||
) else (if exist C:\faronear (
|
||||
set BASEDIR=C:\faronear
|
||||
) else (if exist %HOMEDRIVE%%HOMEPATH%\faronear (
|
||||
set BASEDIR=%HOMEDRIVE%%HOMEPATH%\faronear
|
||||
) else (
|
||||
set BASEDIR=..\..
|
||||
))))
|
||||
|
||||
if not exist %BASEDIR% (
|
||||
echo *** [%BASEDIR%] not exist! Exit now. ***
|
||||
@ GOTO END
|
||||
)
|
||||
|
||||
pushd %BASEDIR%
|
||||
echo *** Current path = [%CD%] ***
|
||||
echo;
|
||||
|
||||
@REM for /d %%d in (*) do ( pushd %%d & ( for /d %%d in (*) do ( if exist %%d/.git pushd %%d & echo --- git pulling: %%d ... & git pull & popd ) ) & popd )
|
||||
|
||||
for /d %%o in (*) do (
|
||||
@REM windows的链接文件会造成路径错误,从而终止该循环,从而导致下一轮乃至所有循环的工作目录错误。因此要过滤掉 .vscode 这个符号链接目录。
|
||||
if not %%o == .vscode (
|
||||
@REM 如果同时使用了 GIT 和 云盘进行管理,每次 git push 都会造成 .git 目录下某些文件变化,导致云盘不断自动同步。因此过滤掉云盘的目录不做更新。
|
||||
echo %%o | findstr "=" >NUL && (
|
||||
echo !!!!!!!! omitting [%BASEDIR%\%%o] !!!!!!!!
|
||||
echo;
|
||||
) || (
|
||||
echo ======== entering [%BASEDIR%\%%o] ========
|
||||
echo;
|
||||
pushd %%o
|
||||
for /d %%g in (*) do (
|
||||
if exist %%g\.git (
|
||||
pushd %%g
|
||||
echo ---- git adding/commiting/pushing [%BASEDIR%\%%o\%%g] ----
|
||||
git add . && git commit -m 'updated' && git push
|
||||
echo;
|
||||
popd
|
||||
)
|
||||
)
|
||||
popd
|
||||
)
|
||||
)
|
||||
)
|
||||
|
||||
popd
|
||||
|
||||
:END
|
||||
|
||||
pause
|
||||
|
Loading…
Reference in New Issue
Block a user