Skip to content

Instantly share code, notes, and snippets.

@evanchooly
Created June 17, 2014 02:32
Show Gist options
  • Save evanchooly/611a602c3e4209ae6eaf to your computer and use it in GitHub Desktop.
Save evanchooly/611a602c3e4209ae6eaf to your computer and use it in GitHub Desktop.
function pr() {
if [ $# -lt 1 ]
then
echo "Error! Missing Pull Request ID #."
else
git fetch origin refs/pull/$1/head:pull-request-$1;
git checkout pull-request-$1;
fi
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment