This commit is contained in:
陆柯 2021-06-28 11:41:09 +08:00
parent d8ac40c7d4
commit 287207aae1

12
git-pull-all.bat Normal file
View File

@ -0,0 +1,12 @@
@ IF "%1" == "" echo Using current folder as root folder
pushd %1
for /d %%d in (*) do pushd %%d & (for /d %%d in (*) do pushd %%d & echo Git Pulling %%d ... & git pull & popd) & popd
popd
@GOTO END
:EMPTY
@ echo Empty target! Please assign a target path.
@ GOTO END
:END