2021-01-11 13:23:31 -03:00
|
|
|
# gh pr
|
2020-10-20 01:29:43 +08:00
|
|
|
|
2023-07-16 19:23:40 +02:00
|
|
|
> Manage GitHub pull requests.
|
2022-10-04 00:26:15 -03:00
|
|
|
> Some subcommands such as `gh pr create` have their own usage documentation.
|
2020-10-20 01:29:43 +08:00
|
|
|
> More information: <https://cli.github.com/manual/gh_pr>.
|
|
|
|
|
|
|
|
- Create a pull request:
|
|
|
|
|
|
|
|
`gh pr create`
|
|
|
|
|
2022-05-02 17:55:38 +07:00
|
|
|
- Check out a specific pull request locally:
|
2020-10-20 01:29:43 +08:00
|
|
|
|
|
|
|
`gh pr checkout {{pr_number}}`
|
|
|
|
|
2022-05-02 17:55:38 +07:00
|
|
|
- View the changes made in the pull request for the current branch:
|
2020-10-20 01:29:43 +08:00
|
|
|
|
|
|
|
`gh pr diff`
|
|
|
|
|
2022-05-02 17:55:38 +07:00
|
|
|
- Approve the pull request for the current branch:
|
2020-10-20 01:29:43 +08:00
|
|
|
|
|
|
|
`gh pr review --approve`
|
|
|
|
|
2021-04-15 14:04:49 -03:00
|
|
|
- Merge the pull request associated with the current branch interactively:
|
2020-10-20 01:29:43 +08:00
|
|
|
|
|
|
|
`gh pr merge`
|
2021-03-08 17:27:00 -03:00
|
|
|
|
|
|
|
- Edit a pull request interactively:
|
|
|
|
|
|
|
|
`gh pr edit`
|
|
|
|
|
|
|
|
- Edit the base branch of a pull request:
|
|
|
|
|
|
|
|
`gh pr edit --base {{branch_name}}`
|
2022-05-02 17:55:38 +07:00
|
|
|
|
|
|
|
- Check the status of the current repository's pull requests:
|
|
|
|
|
|
|
|
`gh pr status`
|