.nh .TH "GH-PR-EDIT" "1" "Oct 2022" "" "GitHub CLI manual" .SH NAME .PP gh-pr-edit - Edit a pull request .SH SYNOPSIS .PP \fB\fCgh pr edit [ | | ] [flags]\fR .SH DESCRIPTION .PP Edit a pull request. .PP Without an argument, the pull request that belongs to the current branch is selected. .SH OPTIONS .TP \fB\fC--add-assignee\fR \fB\fC\fR Add assigned users by their login. Use "@me" to assign yourself. .TP \fB\fC--add-label\fR \fB\fC\fR Add labels by name .TP \fB\fC--add-project\fR \fB\fC\fR Add the pull request to projects by name .TP \fB\fC--add-reviewer\fR \fB\fC\fR Add reviewers by their login. .TP \fB\fC-B\fR, \fB\fC--base\fR \fB\fC\fR Change the base branch for this pull request .TP \fB\fC-b\fR, \fB\fC--body\fR \fB\fC\fR Set the new body. .TP \fB\fC-F\fR, \fB\fC--body-file\fR \fB\fC\fR Read body text from file (use "-" to read from standard input) .TP \fB\fC-m\fR, \fB\fC--milestone\fR \fB\fC\fR Edit the milestone the pull request belongs to by name .TP \fB\fC--remove-assignee\fR \fB\fC\fR Remove assigned users by their login. Use "@me" to unassign yourself. .TP \fB\fC--remove-label\fR \fB\fC\fR Remove labels by name .TP \fB\fC--remove-project\fR \fB\fC\fR Remove the pull request from projects by name .TP \fB\fC--remove-reviewer\fR \fB\fC\fR Remove reviewers by their login. .TP \fB\fC-t\fR, \fB\fC--title\fR \fB\fC\fR Set the new title. .SH OPTIONS INHERITED FROM PARENT COMMANDS .TP \fB\fC-R\fR, \fB\fC--repo\fR \fB\fC<[HOST/]OWNER/REPO>\fR Select another repository using the [HOST/]OWNER/REPO format .SH EXAMPLE .PP .RS .nf $ gh pr edit 23 --title "I found a bug" --body "Nothing works" $ gh pr edit 23 --add-label "bug,help wanted" --remove-label "core" $ gh pr edit 23 --add-reviewer monalisa,hubot --remove-reviewer myorg/team-name $ gh pr edit 23 --add-assignee "@me" --remove-assignee monalisa,hubot $ gh pr edit 23 --add-project "Roadmap" --remove-project v1,v2 $ gh pr edit 23 --milestone "Version 1" .fi .RE .SH SEE ALSO .PP \fB\fCgh-pr(1)\fR