LinuxCommandLibrary
GitHubF-DroidGoogle Play Store

glab-issue

Manage GitLab issues from the command line

TLDR

List issues
$ glab issue list
copy
Create issue
$ glab issue create
copy
View issue
$ glab issue view [number]
copy
Close issue
$ glab issue close [number]
copy
Reopen issue
$ glab issue reopen [number]
copy
Create with title
$ glab issue create -t "[title]" -d "[description]"
copy

SYNOPSIS

glab issue command [options]

DESCRIPTION

glab issue manages GitLab issues from the command line. It provides subcommands for creating, viewing, listing, closing, and commenting on issues without leaving the terminal.

PARAMETERS

-t, --title title

Issue title.
-d, --description text
Issue description.
-l, --label labels
Add labels (comma-separated).
-a, --assignee users
Assign users (comma-separated usernames).
-m, --milestone name
Assign milestone.
-c, --confidential
Create as a confidential issue.
-w, --web
Open in browser.

SUBCOMMANDS

list

List issues.
create
Create an issue.
view
View an issue.
update
Update an issue (title, description, labels, etc.).
close
Close an issue.
reopen
Reopen an issue.
note
Add a comment/note to an issue.
subscribe
Subscribe to an issue.
unsubscribe
Unsubscribe from an issue.
board
View or manage issue boards.
delete
Delete an issue.

SEE ALSO

glab(1), glab-mr(1)

Copied to clipboard
Kai