Windows下遍历所有GIT目录更新项目脚本

将下面代码保存为.bat文件

@echo off
set cdir=%~dp0

for /f "delims=" %%i in ('dir /ad/b/s "%cdir%" ') do ( 
    if "%%~nxi" equ ".git" (
        cd %%~dpi
        git pull
    )

)
pause

猜你喜欢

转载自www.cnblogs.com/msvc/p/12064147.html