Skip to content

Instantly share code, notes, and snippets.

@ninnypants
Last active August 29, 2015 14:03
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 ninnypants/20b6ac15e5b51985c6d4 to your computer and use it in GitHub Desktop.
Save ninnypants/20b6ac15e5b51985c6d4 to your computer and use it in GitHub Desktop.
Locally checkout all remote branches of a repository
git branch -r | cut -d '/' -f2 | grep -Ev '( |master)' | xargs -Ibranch git checkout -b branch origin/branch
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment