1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/glab-issue.md
Reinhart Previano Koentjoro 0c8ed2af5c
glab-issue: add page (#7615)
2022-01-18 21:59:48 +08:00

536 B

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