Skip to content

Instantly share code, notes, and snippets.

@rogeriopvl
Last active August 29, 2015 14:04
Show Gist options
  • Save rogeriopvl/6f388ceeb1baab840d7f to your computer and use it in GitHub Desktop.
Save rogeriopvl/6f388ceeb1baab840d7f to your computer and use it in GitHub Desktop.
# checks out the pull request with the given ID into a local branch named PR<ID>
# example: You have a pull request with id 13. Just do:
# checkout-pr 13 && git checkout PR13
function checkout-pr() {
git fetch origin refs/pull/$1/head:PR$1
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment