Check for modifications in a bunch of locally cloned git repos

Today’s random tech tip of the day – how to check whether you have modifications in a bunch of different locally cloned git repos:

❯ for x in *; do echo $x ; ( cd $x; git status -s ); done
contentsvc
jobsvc
 M supervisor.conf
profilesvc

Leave a Reply

Your email address will not be published. Required fields are marked *