Skip to content

Instantly share code, notes, and snippets.

@jamiecurran
Last active January 3, 2016 20:49
Show Gist options
  • Save jamiecurran/8517731 to your computer and use it in GitHub Desktop.
Save jamiecurran/8517731 to your computer and use it in GitHub Desktop.
update all git repos
IFS=$'\n'; for d in `find * -maxdepth 0 -type d`; do git -C $d pull --rebase; done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment