Created
October 24, 2019 16:03
-
-
Save JuanLengyel/2efb84608e13ed40b6653074e8496b1f to your computer and use it in GitHub Desktop.
Give current status of all repositories that are on the current directory
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@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