Created
December 8, 2016 03:56
-
-
Save ttlequals0/b48ca9a05b03c6ca1ed2cc1fd95ddc7c to your computer and use it in GitHub Desktop.
Git pull on all git repos in current directory
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
for dir in $(ls -dl ./* |awk '{print $9}'); do cd $dir ; git pull ; cd ../ ; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment