1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
---
stage: Create
group: Code Review
info: To determine the technical writer assigned to the Stage/Group associated with this page, see https://about.gitlab.com/handbook/product/ux/technical-writing/#assignments
---
<!--
This documentation is auto generated by a script.
Please do not edit this file directly. Run `make gen-docs` instead.
-->
# `glab issue update`
Update issue
```plaintext
glab issue update <id> [flags]
```
## Examples
```plaintext
glab issue update 42 --label ui,ux
glab issue update 42 --unlabel working
```
## Options
```plaintext
-a, --assignee strings Assign users by username. Prefix with '!' or '-' to remove from existing assignees, or '+' to add new. Otherwise, replace existing assignees with these users.
-c, --confidential Make issue confidential
-d, --description string Issue description. Set to "-" to open an editor.
-l, --label strings Add labels.
--lock-discussion Lock discussion on issue.
-m, --milestone string Title of the milestone to assign Set to "" or 0 to unassign.
-p, --public Make issue public.
-t, --title string Title of issue.
--unassign Unassign all users.
-u, --unlabel strings Remove labels.
--unlock-discussion Unlock discussion on issue.
-w, --weight int Set weight of the issue.
```
## Options inherited from parent commands
```plaintext
--help Show help for this command.
-R, --repo OWNER/REPO Select another repository. Can use either OWNER/REPO or `GROUP/NAMESPACE/REPO` format. Also accepts full URL or Git URL.
```
|