You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
425 B
Batchfile

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