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

posted @ 2019-12-18 22:32  MADE.BEER  阅读(654)  评论(0编辑  收藏  举报