Adapted from this gist on how to 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
The find command is your friend, along with some shell magic.