Created
March 24, 2015 09:04
-
-
Save developius/edb31f782af2f252d688 to your computer and use it in GitHub Desktop.
Recursively enter all sub directories of current directory and run git pull in them
This file contains 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
for x in `ls`; do cd $x && git pull && cd ../; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment