1. Open Git Bash
2. Change directory to check
a. Ex: cd /c/projects/repos/uipath
3. Paste the followinga and press enter
find . -type d -name '.git' | while read dir ; do sh -c "cd $dir/../ && echo -e \"\nGIT STATUS IN ${dir//\.git/}\" && git status -s" ; done