Created
October 24, 2012 22:40
-
-
Save helior/3949408 to your computer and use it in GitHub Desktop.
Find Git repositories and run `git pull` on each of them.
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
find . -type d -name .git | xargs -n 1 dirname | while read line; do echo $line && cd $line && git pull && cd ..; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment