1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 22:22:18 +02:00
tldr/pages/common/gh-issue.md
Lena 7ca1069d76
pages/*: reword descriptions without using "a CLI for" etc. (#10437)
Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2023-07-16 19:23:40 +02:00

32 lines
727 B
Markdown

# gh issue
> Manage GitHub issues.
> More information: <https://cli.github.com/manual/gh_issue>.
- Display a specific issue:
`gh issue view {{issue_number}}`
- Display a specific issue in the default web browser:
`gh issue view {{issue_number}} --web`
- Create a new issue in the default 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 a specific issue:
`gh issue reopen {{issue_number}}`