I need to pull in a specific pull request (that hasn\'t been processed into the main stream yet) in the NServiceBus repo:
https://github.com/johnsimons/NServiceBus/c
This is the solution from GitHub docs:
From your project repository, check out a new branch and test the changes.
git checkout -b GithubUserID-branchName branchName
git pull https://github.com/GithubUserID/reponame.git branchName
Where:
GithubUserID is the username of the person who opened the pull request.branchName is the name of the branch for example masterreponame the repository name like demo-todoExample :
git checkout -b felix123-master master
git pull https://github.com/felix123/demo-todo.git master