Skip to content

Instantly share code, notes, and snippets.

@Voronenko
Created September 3, 2014 14:41
Show Gist options
  • Save Voronenko/2895fed6b5c9d3671eff to your computer and use it in GitHub Desktop.
Save Voronenko/2895fed6b5c9d3671eff to your computer and use it in GitHub Desktop.
Useful for vagrant development: iterative scan through directories and pulling git in each
for dir in ~/projects/git/*; do (cd "$dir" && git pull); done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment