glab-issue: add page (#7615)

feature/windows-fix-syntax-2
Reinhart Previano Koentjoro 2022-01-18 20:59:48 +07:00 committed by GitHub
parent 0316207aeb
commit 0c8ed2af5c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 24 additions and 0 deletions

View File

@ -0,0 +1,24 @@
# glab issue
> Manage GitLab issues from the command-line.
> More information: <https://glab.readthedocs.io/en/latest/issue>.
- Display a specific issue:
`glab issue view {{issue_number}}`
- Create a new issue in the default web browser:
`glab issue create --web`
- List the last 10 issues with the `bug` label:
`glab issue list --per-page {{10}} --label "{{bug}}"`
- List closed issues made by a specific user:
`glab issue list --closed --author {{username}}`
- Reopen a specific issue:
`glab issue reopen {{issue_number}}`