1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-18 18:15:41 +02:00

glab-issue: add page (#7615)

This commit is contained in:
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

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}}`