Reputation: 635
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?
Upvotes: 1
Views: 2089
Reputation: 9100
That's pretty easy to do.
Once done, you can create, work on, close issues
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).
Upvotes: 14
Reputation: 5166
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.
Upvotes: 1