1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-07-05 15:15:23 +02:00
tldr/pages/common/gh-pr-create.md

25 lines
650 B
Markdown
Raw Normal View History

2021-06-29 04:58:36 +09:00
# gh pr create
> Manage GitHub pull requests.
2021-06-29 04:58:36 +09:00
> More information: <https://cli.github.com/manual/gh_pr_create>.
- Interactively create a pull request:
`gh pr create`
- Create a pull request, determining the title and description from the commit messages of the current branch:
`gh pr create {{[-f|--fill]}}`
2021-06-29 04:58:36 +09:00
- Create a draft pull request:
`gh pr create {{[-d|--draft]}}`
2021-06-29 04:58:36 +09:00
- Create a pull request specifying the base branch, title, and description:
`gh pr create {{[-B|--base]}} {{base_branch}} {{[-t|--title]}} "{{title}}" {{[-b|--body]}} "{{body}}"`
2021-06-29 04:58:36 +09:00
- Start opening a pull request in the default web browser:
2021-06-29 04:58:36 +09:00
`gh pr create {{[-w|--web]}}`