When I open a pull request on GitHub, all commits since my last request and all new ones are automatically added to this request. I can't seem to control which commits are added and which are not. When I try to open another pull request, I get an "Oops! There's already a pull request" error. Is there any easy way to open multiple pull requests without having to mess around with the command line?
|
feedback
|
|
Pull requests are based on a branch. The only way to open up a pull request for multiple commits is to isolate them into their own branch, and open the pull requests from there. | |||
|
feedback
|
|
You actually CAN do this without creating another branch, but it takes a bit of playing around.
As I see it, the pull request sees commit C as a branch point. Or something. | |||
|
feedback
|
|
The easiest way I've found to do this is with the hub command (https://github.com/defunkt/hub). From your topic branch ("feature" in this example) that you want to create a pull request for, you can just run:
(remember to push your branch first!) And it will open a new pull request on GitHub for "YOUR_USER:feature". If you've already created an issue on GitHub, you can even attach a pull request to that existing issue (something you can't do from the web UI):
| |||
|
feedback
|