Last active
December 10, 2015 18:30
-
-
Save dantheman213/0d259d7ccb40e6fe428d to your computer and use it in GitHub Desktop.
Execute this one-liner in your primary directory for git projects to get latest codebase
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 k in `ls`; do echo "Getting latest for $k"; cd $k; git fetch; git pull; cd ..; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment