Return to Snippet

Revision: 48866
at July 12, 2011 03:50 by iloveitaly


Initial Code
find $PWD -name ".git" | while read line; do cd `dirname $line`; echo $PWD; git push; done

Initial URL


Initial Description
Useful when managing a bunch of submodules.

Initial Title
Push All Git Repos

Initial Tags
git

Initial Language
Bash