Files
windows_tools/batch/repo-pulls.cmd
2021-01-22 10:30:25 -05:00

16 lines
272 B
Batchfile

@echo off
FOR /f "tokens=*" %%G IN ('dir /b') DO (
if exist %%G\.git (
echo %%G
cd %%G
git pull
cd ..
echo ==================== )
if exist %%G\.svn (
echo %%G
cd %%G
svn update
cd ..
echo ==================== ))