Created
June 26, 2017 15:20
-
-
Save davidvanvickle/272012f31a2e1a6a0117693031679535 to your computer and use it in GitHub Desktop.
find local repo changes from base project directory
This file contains hidden or 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
#!/bin/bash | |
for d in */ ; do | |
echo "-- $d --" | |
cd $d | |
git status -s | |
cd .. | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment