Last active
August 29, 2015 14:04
-
-
Save rogeriopvl/6f388ceeb1baab840d7f to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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