Last Updated: February 25, 2016
·
280
· hans2103

Git status for all repositories in subdirectories of current dir.

$ find . -maxdepth 1 -mindepth 1 -type d -exec sh -c '(echo {} && cd {} && git status -s && echo)' \;