A pull request comes into my repo hosted on Github. By default it is merged into the master branch.

Is there any way for me to change which branch the changes would be merged into?

link|improve this question

71% accept rate
feedback

1 Answer

up vote 5 down vote accepted

The submitter can change that when they issue the pull request, but once they issue it you can't change it.

On the other hand, you can manually merge their branch and push, which I semi-regularly do for mistargetted pull requests.

You may find the hub gem helpful in working with the components of the pull request.

That gem wraps up the manual process, which is:

  1. Add a remote for the fork to your local checkout.
  2. Fetch that remote.
  3. git checkout ${target_branch} && git merge ${remote}/${branch}
  4. git push origin ...
link|improve this answer
If I manually merge and push, will Github realise that the pull request has been effectively completed? Any pointers on how to merge from a remote separate repo (the fork)? – eoinoc Feb 4 at 20:01
1  
I am not sure, but not directly - because the change didn't merge into the target branch, so the pull request is not completed as defined. You need to manually close it. As to the pointers, see the edited comment. – Daniel Pittman Feb 4 at 20:16
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.