Created
April 16, 2019 12:09
-
-
Save IndyIndyIndy/64b536a2bbc3ba940400009d52ffaf01 to your computer and use it in GitHub Desktop.
check the git status of all files in subdirectories (with multiple git repositories)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find . -maxdepth 1 -mindepth 1 -type d -exec sh -c '(echo {} && cd {} && git status -s && echo)' \; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment