I'm not sure, but I have a vague memory of creating a github pull request with "Issue 4" or something in the title, and it automatically attached itself to Issue 4 in the project that I was submitting it to. I tried it again recently and it didn't work -- it just created a brand new issue instead. I don't see any options like "Attach to issue" on the new pull request page, nor "Open a new pull request for this issue" on the issue page. Is there any way to do this, to help project owners keep their Issues page clean and avoid duplication?

Edit: To clarify, I know that creating a pull request always creates a new issue. I would like to instead attach the pull request to an existing issue.

link|improve this question

78% accept rate
I believe my answer express the fact that the feature you want ("attach a pull request to an existing issue") might not be there yet. – VonC Dec 25 '10 at 1:19
It does (and that is in fact confirmed by this tweet), but it also made me realize my question could have been clearer. – MatrixFrog Dec 25 '10 at 1:24
I hope that feature is high on github priority list, coz the code bears out there would love it! – flq Jan 3 '11 at 12:53
The correct answer ought to be changed to masukomi's, now that the "fixes #1" method available. No need to go through the API. – nilbus Sep 15 '11 at 18:35
I still cannot find a way to attach a pull request to an existing issue. Have I missed something? The answers in this thread seems to suggest this capability does exist, but I cannot find it (it always makes a new issue). – Kevin Jalbert Oct 5 '11 at 22:02
show 2 more comments
feedback

3 Answers

up vote 25 down vote accepted

The "hub" project can do this:

https://github.com/defunkt/hub

In the repository and branch that you want to send a pull request from:

$ hub pull-request -i 4

This uses the GitHub API, and attaches a pull request for the current branch to the existing issue number 4.

link|improve this answer
1  
I think you must mean hub pull-request -i 4 — #4 would be interpreted by the shell as a comment. – Tyler Rick Feb 25 at 0:19
feedback

You can create a Pull Request from an existing Issue in the new Pull Request API (still in beta):

$ curl -d "pull[base]=master" -d "pull[head]=smparkes:synchrony" \
  -d "pull[issue]=15" \
  -u "smparkes:password" \
  https://github.com/api/v2/json/pulls/technoweenie/faraday

This creates a pull request:

  • ask technoweenie at project faraday (https://github.com/api/v2/json/pulls/technoweenie/faraday)
  • to pull from the synchrony branch in smparkes' fork (-d "pull[head]=smparkes:synchrony")
  • to the master branch in technoweenie's fork (-d "pull[base]=master")
  • and attach the pull request to issue 15 (-d "pull[issue]=15")
  • with the pull-request-author smparkes authorized by password password (-u "smparkes:password")
link|improve this answer
I copied in some of the sample code from that link. Hope you don't mind, and please let me know if I mistranslated it! – MatrixFrog Dec 25 '10 at 7:14
3  
You also need authentication, add this to command above: -u "login:password" – morgoth Feb 23 '11 at 14:00
1  
I'd just like to add that this method still works, but it may have the side effect of listing your commit twice on the discussion page, if GitHub had already picked it up implicitly from the issue # in its message (example). The commit only comes through once on the official pull request, though. – Greg Haskins Aug 27 '11 at 22:13
feedback

Adding a pull request to an existing upstream issue is easy assuming you forked using the normal github means.

Simply reference the issue in your commit message using any of the supported keywords: close, closes, closed, fixes, fixed. For example: "this commit fixes #116"

It will probably work without one of the supported keywords too but as you're theoretically doing something to address an existing issue then it makes sense to use them. The text referencing the issue does not need to appear in the subject line of your commit.

Push your commit to your github repo and the pull request will be automatically appended to the issue.

Note: While it is not required, it is strongly recommended that you commit anything that will be part of a pull request to a separate branch specific to that issue, because future commits on that branch will be appended to the pull request. So, if you didn't make a separate branch, left it on master, and then kept developing, then all your unrelated commits to master would get appended to your pull request.

link|improve this answer
3  
"it is strongly recommended that you commit anything that will be part of a pull request to a separate branch specific to that issue, because future commits on that branch will be appended to the pull request" -- very good point. That happened to me once and it was quite surprising. – MatrixFrog Aug 25 '11 at 16:46
1  
This does not solve the problem of turning an issue into a pull request unfortunately. Any discussion that was had in the issue does not get transferred to the pull request... which is unfortunate for several use-cases. I wish Github would just give some granular control over how pull-reqs work in the repo settings. – Alex Waters Feb 16 at 15:21
I'm not sure why you need an issue turned into a pull request. Why isn't having the pull-request mentioned in the issue's conversation sufficient? This would happen automatically by referencing the # in the pull req. You have a covo thread. Then you have a thread with the relevant pull req embedded in it. Sounds perfect. – masukomi Feb 16 at 18:59
feedback

Your Answer

 
or
required, but never shown

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