Lets suppose I own my own repo - lets call it https://github.com/me/myrepo
Now let's suppose another user forked my repo and made some edits and has submitted a PR for me to merge. Lets call his pull request https://github.com/me/myrepo/pull/44
- I want to be able to clone the PR, review it, make changes
- I want to commit these changes to the same PR
- At a later time, I want to merge it.
So basically, given he has made a PR on my repo, I assume I have the right to co-commit in his PR.
The "Cli instructions" GitHub gives tells me to check out his fork via pull, make edits and then merge to master. I don't want to merge to master. I want to keep the changes in the PR, and not in his fork, but in my repo.
Can I ?
Thanks