Created
May 8, 2013 23:20
-
-
Save afeld/5544426 to your computer and use it in GitHub Desktop.
show status of a bunch of git directories
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
for D in `find . -type d -depth 1` | |
do | |
cd $D | |
echo $D | |
git status | |
cd - > /dev/null | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment