glab-issue:tldr:465e3
glab-issue: List the last 10 issues with the `bug` label.
$ glab issue list --per-page ${10} --label "${bug}"
try on your machine
This command is using the GitLab (glab) tool to list issues.
Here is the breakdown of the command:
glab
: It is a command-line tool for GitLab. It provides several features and commands to interact with GitLab repositories.issue list
: This command is used to list issues from a GitLab repository.--per-page ${10}
: This flag specifies how many issues should be displayed per page in the output. In this case, it is set to 10.--label "${bug}"
: This flag filters the issues based on a specific label. The label being used here is "bug". Only the issues that have been labeled as "bug" will be listed.
So, this command will list all the issues in a GitLab repository that have the label "bug", showing 10 issues per page in the output.
This explanation was created by an AI. In most cases those are correct. But please always be careful and
never run a command you are not sure if it is safe.