-
Notifications
You must be signed in to change notification settings - Fork 5
Managing GitHub Issues
Supun Matheesha Suriyaarachchi edited this page Jul 23, 2021
·
5 revisions
You can install the GitHub CLI via this link GitHub CLI
gh
gh auth login
gh --version
gh issue list
gh issue list --assignee "UserName"
gh issue status
gh issue list --state "closed"
gh issue list --label "label flag(label name)"
gh issue list -l "bug"
gh issue view "Issue number"
gh issue create
-
After we created an issue we are able to set a "Title" and a "Body" to our issue.
gh issue create -t "Title" -b "Body"
gh issue create --web
gh issue delete "Issue Number"