简体   繁体   中英

Github issues integration with android studio

I already have Github set up in Android studio.
I can commit, push and everything else.
What I can't figure out is how do create and manage Github issues with Android studio?

That's pretty easy to do.

Integrate Github (not git) server

  • Tools -> Tasks & Contexts -> Configure Servers
  • Add a github server (not gitlab) an set your repo stuff there

Work on issues

Once done, you can create, work on, close issues

  • Tools -> Tasks & Contexts -> Switch task (or Alt + Shift + T on windows)

You can open, mark as resolved, create branch for the issue. If you want it closed you can include closes #123 in your commit message which will close it (this doesn't have to be from within android studio, github recognizes it as a command).

Actually, what you've got set up in Android Studio is Git, not GitHub. Git is the version control system, GitHub just hosts the repositories and essentially pretties it up for you. Issues aren't in any way actually associated with your git repository, except through GitHub and as a result, what you're trying to do isn't possible.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM