Skip to content

Instantly share code, notes, and snippets.

@tafkey
Last active October 19, 2023 15:15
Show Gist options
  • Save tafkey/664266c00387c98631b3 to your computer and use it in GitHub Desktop.
Save tafkey/664266c00387c98631b3 to your computer and use it in GitHub Desktop.
Print git status of all repositories under the current folder
find . -type d -name '.git' | while read dir ; do sh -c "cd $dir/../ && echo -e \"\nGIT STATUS IN ${dir//\.git/}\" && git status -s" ; done
@tafkey
Copy link
Author

tafkey commented Sep 28, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment