Skip to content

Instantly share code, notes, and snippets.

@developius
Created March 24, 2015 09:04
Show Gist options
  • Save developius/edb31f782af2f252d688 to your computer and use it in GitHub Desktop.
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
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