LinuxCommandLibrary

glab-issue

Manage GitLab issues from the command-line.

TLDR

Display a specific issue

$ glab issue view [issue_number]
copy


Display a specific issue in the default web browser
$ glab issue view [issue_number] --web
copy


Create a new issue in the default web browser
$ glab issue create --web
copy


List the last 10 issues with the bug label
$ glab issue list --per-page [10] --label "[bug]"
copy


List closed issues made by a specific user
$ glab issue list --closed --author [username]
copy


Reopen a specific issue
$ glab issue reopen [issue_number]
copy

Copied to clipboard