To list status on all git repositories in a folder:
find . -maxdepth 1 -mindepth 1 -type d -exec sh -c '(echo {} && cd {} && git status -s && echo)' \;
(from https://coderwall.com/p/grmruq/git-status-on-all-repos-in-folder)
To list status on all git repositories in a folder:
find . -maxdepth 1 -mindepth 1 -type d -exec sh -c '(echo {} && cd {} && git status -s && echo)' \;
(from https://coderwall.com/p/grmruq/git-status-on-all-repos-in-folder)