1
0
mirror of synced 2024-11-23 23:20:58 +01:00
universe/all.cmd
2022-02-03 21:13:20 +00:00

11 lines
252 B
Batchfile

@echo off
for /D %%G in (%CD%\*) do if exist %%G\.git (
cd %%G
echo ================================================================
echo %%G
echo ================================================================
git %*
cd ..
)