Skip to content

Instantly share code, notes, and snippets.

@taylord0ng
Last active February 17, 2020 14:11
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 taylord0ng/215de845d1b5632c7d75d552cc74a540 to your computer and use it in GitHub Desktop.
Save taylord0ng/215de845d1b5632c7d75d552cc74a540 to your computer and use it in GitHub Desktop.
git push all && pull all
git branch -r | grep -v '\->' | while read remote; do git branch --track "${remote#origin/}" "$remote"; done
git fetch --all
git pull --all
git push code --all
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment