Skip to content

Instantly share code, notes, and snippets.

@NDiiong
Created June 2, 2022 11:17
Show Gist options
  • Save NDiiong/fdcc5e893c683ba46ebf406740f6b5e8 to your computer and use it in GitHub Desktop.
Save NDiiong/fdcc5e893c683ba46ebf406740f6b5e8 to your computer and use it in GitHub Desktop.
@echo off
setlocal EnableDelayedExpansion
for /r E:\repos\ %%f in (*.gitignore) do (
ECHO repository: %%~dpf
cd %%~dpf
call git fetch
call git pull
)
pause
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment