Skip to content

Instantly share code, notes, and snippets.

@davidvanvickle
Created June 26, 2017 15:20
Show Gist options
  • Save davidvanvickle/272012f31a2e1a6a0117693031679535 to your computer and use it in GitHub Desktop.
Save davidvanvickle/272012f31a2e1a6a0117693031679535 to your computer and use it in GitHub Desktop.
find local repo changes from base project directory
#!/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