IntelliJ IDEA smart integration with github

Has anyone successfully done this job? I followed the directions closely, but I cannot get my IDEA tasks to sync with my list of issues on github. In the project setup, I have a cache that allows me to synchronize problems every five minutes, and in the server configuration, when I click "test", the connection is successful. Does this feature really work?

+8
github intellij-idea task issue-tracking
source share
1 answer

I managed to make it work

Here are the steps required in Intellij:

  • Settings | Tasks | Servers ...
  • Add a server with the following data
    • Username = GitHub username
    • Password = GitHub Password
    • Repository author = GitHub username
    • Repository = Project name (for example, "MultiBitMerchant") Click "Test"

If all goes well, you will succeed, the crash is usually 401 and means that you have added something strange to the above.

To check the synchronization with your problems, create a problem on GitHub if you have not already done so.

  • In Intellij, select Tools | Tasks and Contexts | Open the task ...
  • Use CTRL + Space (or equivalent) to get a list of tasks
  • Choose one, then click OK.
  • Make your changes according to the assignment (focus on his requirement)
  • Commit (and click) to see a link to a problem placed as a commit comment for easy tracking

Hope this helps.

+15
source share

All Articles