If a project consists of multiple git repositories I’d like to see if I forgot to create a commit in one of them at the end of a development day.
This little bash script traverses all directories with a .git directory and checks with a ‘git status’ what the status of that git repository is.
Handy! I’d use it, if it were me!
for x in $(find . -type d -name ".git"); do pushd $(dirname $x); pwd; git status; popd; done