What tools, if any, are available to show the status of my git repo\'s and how much they are forward/behind versus their remotes? I\'m imagining something like this exists:<
Quick one-liner that assumes you're in a folder containing lots of git repo folders:
find . -maxdepth 1 -type d -exec sh -c "(cd '{}' && pwd && git status)" \;