Skip to content

Instantly share code, notes, and snippets.

@afeld
Created May 8, 2013 23:20
Show Gist options
  • Save afeld/5544426 to your computer and use it in GitHub Desktop.
Save afeld/5544426 to your computer and use it in GitHub Desktop.
show status of a bunch of git directories
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