Last active
December 17, 2015 15:19
-
-
Save adunkman/5631298 to your computer and use it in GitHub Desktop.
Execute git status on each directory that is a git repository in 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
ls -dx1 */.git/ | sed 's/\(.*\)\/\.git\//echo \1: \&\& cd \1 \&\& git status --porcelain \&\& cd ..; /' | bash |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment