universe/all.cmd

16 lines
425 B
Batchfile
Raw Permalink Normal View History

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