Has anyone successful made this work? I've followed the directions carefully, but I can't get my IDEA tasks to sync up with my issues list on github. In the project setup I have the cache enabled to sync issues every five minutes, and in the server configuration when i hit "test" the connection is successful. Does this feature actually work?
Asked
Active
Viewed 8,954 times
1 Answers
23
I've managed to get it to work
Here are the steps required in Intellij:
- Settings | Tasks | Servers...
- Add server with following details
- Username = GitHub user name
- Password = GitHub password
- Repository author = GitHub user name
- Repository = Name of project (e.g. "MultiBitMerchant")
- Click Test
If all is well you'll get success, failure is usually a 401 and means you've added something strange into the above.
To check that you are synchronizing against your Issues, create an Issue on GitHub if you haven't already.
- In Intellij, select Tools | Tasks and Contexts | Open task ...
- Use CTRL + Space (or equivalent) to get list of tasks
- Choose one then click OK
- Make your changes in accordance with the task (stay focused on its requirement)
- Commit (and push) to see your Issue reference placed as a commit comment for easy tracking
Hope this helps.
-
Thanks, it's the
+ – jasonhudgins Jun 04 '12 at 22:01part that I was missing. Apparently this is required to get it to show up. I was expecting it to show up under existing tasks using the drop down in the toolbar. -
I have the same problem as OP in 13.1.5. I pressed Ctrl+Space several times and no task is showing up. Is this feature broken in 13.1? – morpheus05 Oct 13 '14 at 09:24
-
Not for me it isn't. I been work with GitHub issues as tasks in 13.1 every day. When selecting I tend to type the issue number to locate it. – Gary Oct 14 '14 at 05:43
-
Thanks this was helpful, can you create issues in github from IDEA? – HaveAGuess Dec 20 '20 at 22:44