Skip to content

Instantly share code, notes, and snippets.

@JuanLengyel
Created October 24, 2019 16:03
Show Gist options
  • Save JuanLengyel/2efb84608e13ed40b6653074e8496b1f to your computer and use it in GitHub Desktop.
Save JuanLengyel/2efb84608e13ed40b6653074e8496b1f to your computer and use it in GitHub Desktop.
Give current status of all repositories that are on the current directory
@echo off
for /d %%i in (%cd%\*) do (
echo *************************************************************************
echo "%%i"
cd "%%i"
echo -----------------------------------------
echo status
git status
echo -----------------------------------------
echo *************************************************************************
)
cd ..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment