Skip to content

Instantly share code, notes, and snippets.

@runozo
Last active October 2, 2015 16:00
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save runozo/f582991277e50cfcaea8 to your computer and use it in GitHub Desktop.
Save runozo/f582991277e50cfcaea8 to your computer and use it in GitHub Desktop.
[bash] Pull all git repos in a directory
for p in *; do (cd $p; git pull);done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment