My project on GitHub has received a pull request. The pull request only partly fixes the issue that it\'s addressing. I\'ve pulled in the changes to a local branch and added som
It is possible to do this now (link)
Suppose you have received a pull request in yourrepo
from otheruser
.
Add the other user as a remote
git remote add otheruser https://github.com/otheruser/yourrepo.git
Fetch
git fetch otheruser
Create a branch from their repo
git checkout -b otheruser-master otheruser/master
Now make some changes and commit. Push to their repo
git push otheruser HEAD:master