Created
June 2, 2022 11:17
-
-
Save NDiiong/fdcc5e893c683ba46ebf406740f6b5e8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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