Created
June 15, 2018 21:13
-
-
Save neklaf/9300e5e87af675d2b6f211e5bd36426b to your computer and use it in GitHub Desktop.
Command to find the status of local repositories in the workspace directory
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
$ cd WORKSPACE_DIRECTORY; for i in `find . -maxdepth 1 -type d `; do echo "$i"; git -C $i status -s; done; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment