gh pr update-branch

gh pr update-branch [<number> | <url> | <branch>] [flags]

使用基础分支的最新更改更新拉取请求分支。

如果没有参数,则选择属于当前分支的拉取请求。

默认行为是使用合并提交进行更新(即,将基础分支合并到 PR 的分支中)。要通过重新设置基础分支顶部的更改来协调更改,应提供 --rebase 选项。

选项

--rebase
通过重新设置最新基础分支顶部的更改来更新 PR 分支

从父命令继承的选项

-R, --repo <[HOST/]OWNER/REPO>
使用 [HOST/]OWNER/REPO 格式选择另一个存储库

示例

$ gh pr update-branch 23
$ gh pr update-branch 23 --rebase
$ gh pr update-branch 23 --repo owner/repo

另请参阅