Skip to content

Instantly share code, notes, and snippets.

@sashaegorov
Created September 19, 2013 21:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sashaegorov/6629808 to your computer and use it in GitHub Desktop.
Save sashaegorov/6629808 to your computer and use it in GitHub Desktop.
Simple bash one liner script for bulk git repositories status check.
cwd=`pwd`;for repo in `find . -type d -name '.git'`; do repodir=`echo $repo | sed 's/\.git$//'`; echo "Checking: $repodir"; cd $repodir; git status -s; cd $cwd; done
Checking: ./rubymotion-formotion-examples/
Checking: ./rubymotion-push-notification/
D Rakefile.example
Checking: ./RubyMotionSamples/
@sashaegorov
Copy link
Author

Simple bash one liner script for bulk git repositories status check.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment