📚 [Windows] 디렉토리별 git pull 스크립트 만들기

Category: Windows | 📅 February 18, 2021

스크립트

@echo off
setlocal enabledelayedexpansion

set gitpath = %~dp0%

cd %gitpath%

for /D %%i in (*) do (
    cd %%i
    git pull
    cd ..
)

endlocal

💭 Reviews
  • Win10을 쓰면서 점점 batch 파일등의 스크립트 쓰는 시간이 많아지고 있음. 허허
  • 🏷️ Tags
  • #DOS  
  • #batch  
  • #batch-Script