universe/all.cmd

11 lines
252 B
Batchfile
Raw Normal View History

2022-02-03 21:13:20 +00:00
@echo off
for /D %%G in (%CD%\*) do if exist %%G\.git (
cd %%G
echo ================================================================
echo %%G
echo ================================================================
git %*
cd ..
)