1
0
mirror of synced 2024-11-28 00:50:47 +01:00
universe/all.cmd

16 lines
425 B
Batchfile
Raw Normal View History

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