Skip site navigation (1)Skip section navigation (2)

FreeBSD Manual Pages

  
 
  

home | help
Jira CLI(7)							     Jira CLI(7)

NAME
     jira-issue-edit - Edit an issue in a project

SYNOPSIS
     jira issue edit ISSUE-KEY [flags]

DESCRIPTION
     Edit an issue in a given project with minimal information.

OPTIONS
     -P, --parent=""	  Link to a parent key

     -s, --summary=""	   Edit summary or title

     -b, --body=""	Edit description

     -y, --priority=""	    Edit priority

     -a, --assignee=""	    Edit assignee (email or display name)

     -l, --label=[]	 Append labels

     -C, --component=[]      Replace components

     --fix-version=[]	   Add/Append release info (fixVersions)

     --affects-version=[]      Add/Append release info (affectsVersions)

     --custom=[]      Edit custom fields

     --skip-notify[=false]	Do not notify watchers about the issue update

     --web[=false]	Open in web browser after successful update

     --no-input[=false]      Disable prompt for non-required fields

     -h, --help[=false]      help for edit

OPTIONS INHERITED FROM PARENT COMMANDS
     -c,  --config=""	    Config  file  (default  is /root/.config/.jira/.con-
     fig.yml, can be overridden with JIRA_CONFIG_FILE env var)

     --debug[=false]	  Turn on debug output

     -p, --project=""	   Jira project to look into  (defaults  to  /root/.con-
     fig/.jira/.config.yml)

EXAMPLE
     $ jira issue edit ISSUE-1

     # Edit issue in the configured project
     $ jira issue edit ISSUE-1 -s"New Bug" -yHigh -lbug -lurgent -CBackend -b"Bug description"

     # Use --no-input option to disable interactive prompt
     $ jira issue edit ISSUE-1 -s"New updated summary" --no-input

     # Use pipe to read the description body directly from standard input
     $ echo "Description from stdin" | jira issue edit ISSUE-1 -s"New updated summary"	--no-input

     # Use minus (-) to remove label, component or fixVersion
     $ jira issue edit ISSUE-1 --label -urgent --component -BE --fix-version -v1.0

SEE ALSO
     jira-issue(7)

HISTORY
     1-Aug-2026 Auto generated by spf13/cobra

Auto generated by spf13/cobra	    Aug 2026			     Jira CLI(7)

Want to link to this manual page? Use this URL:
<https://man.freebsd.org/cgi/man.cgi?query=jira-issue-edit&sektion=7&manpath=FreeBSD+Ports+15.1.quarterly>

home | help