I have a fork for a repo on github. I was trying to submit a pull request of just my latest commit, which changes 1 file. Somehow, 30 commits were submitted instead.

How do I cancel the pull request?

link|improve this question

feedback

3 Answers

up vote 4 down vote accepted

github now supports 'closing' a pull request

link|improve this answer
feedback

In the spirit of a DVCS (as in "Distributed"), you don't cancel something you have published:
Pull requests are essentially patches you have send (normally by email, here by GitHub webapp), and you wouldn't cancel an email either ;)

But since the GitHub Pull Request system also includes a discussion section, that would be there that you could voice your concern to the recipient of those changes, asking him/her to disregards 29 of your 30 commits.

Finally, remember:

  • a/ you have a preview section when making a pull request, allowing you to see the number of commits about to be included in it, and to review their diff.
  • b/ it is preferable to rebase the work you want to publish as pull request on top of the remote branch which will receive said work. Then you can make a pull request which could be safely applied in a fast forward manner by the recipient.
link|improve this answer
Marking this as correct. After more researching I found a reference on github itself that says pull requests can't be canceled. While I understand the theoretical argument you are making against even having the option, practically the pull request is nothing more than a link added to a database. So, in fact you should be able to cancel the request -- we are not talking about email here, so the expectation should not be that we must follow the same design pattern as email. – Answerbot Mar 22 '11 at 14:48
@Harkonian: I full agree with your argument: source and destination are on the GitHub webapp server side, so any action (like a cancel) should be possible. But currently, you would need to make a "request for enhancement" to GitHub team in order to ask for that feature. – VonC Mar 22 '11 at 15:14
feedback

have you tried

git reset --soft HEAD^
link|improve this answer
1  
This isn't going to interact with the github.com web site, and definitely won't interact with pull requests. – Greg Hewgill Mar 22 '11 at 1:10
Greg is correct. If only it were that simple. It would definitely have to be something done via the webisite. – Answerbot Mar 22 '11 at 1:31
feedback

Your Answer

 
or
required, but never shown

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