Check all git repo statuses

PHOTO EMBED

Wed Sep 07 2022 13:04:56 GMT+0000 (Coordinated Universal Time)

Saved by @rick_m

	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
content_copyCOPY

https://stackoverflow.com/questions/961101/git-find-all-uncommitted-locals-repos-in-a-directory-tree