Skip to content

Instantly share code, notes, and snippets.

@flomincucci
Created September 27, 2018 18:11
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save flomincucci/473aadfd9bee5694a7fa8936e578553f to your computer and use it in GitHub Desktop.
Save flomincucci/473aadfd9bee5694a7fa8936e578553f to your computer and use it in GitHub Desktop.
Pull in all the repos in a folder
#!/bin/sh
for d in ./* ; do (cd "$d" && git pull); done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment