Skip to content

Instantly share code, notes, and snippets.

@neklaf
Created June 15, 2018 21:13
Show Gist options
  • Save neklaf/9300e5e87af675d2b6f211e5bd36426b to your computer and use it in GitHub Desktop.
Save neklaf/9300e5e87af675d2b6f211e5bd36426b to your computer and use it in GitHub Desktop.
Command to find the status of local repositories in the workspace directory
$ 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