1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-23 16:42:08 +02:00
tldr/pages/common/gh-issue.md
bl-ue 8ebd171d6f
*: fix typos reported by Hunspell (#5848)
Co-authored-by: marchersimon <50295997+marchersimon@users.noreply.github.com>
Co-authored-by: Seth Falco <seth@falco.fun>
Co-authored-by: Patrice Denis <patricedenis@users.noreply.github.com>
2021-05-20 16:13:41 -04:00

28 lines
632 B
Markdown

# gh issue
> Manage GitHub issues from the command-line.
> More information: <https://cli.github.com/manual/gh_issue>.
- Print out the issue:
`gh issue view {{issue_number}}`
- Create a new issue in the web browser:
`gh issue create --web`
- List the last 10 issues with the `bug` label:
`gh issue list --limit {{10}} --label "{{bug}}"`
- List closed issues made by a specific user:
`gh issue list --state closed --author {{username}}`
- Display the status of issues relevant to the user, in a specific repository:
`gh issue status --repo {{owner}}/{{repository}}`
- Reopen an issue:
`gh issue reopen {{issue_number}}`