mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 15:36:21 -04:00
53 lines
1.4 KiB
Markdown
53 lines
1.4 KiB
Markdown
git-pull-request(1) -- Create pull request for GitHub project
|
|
================================
|
|
|
|
## SYNOPSIS
|
|
|
|
`git-pull-request` [<branch>]
|
|
|
|
## DESCRIPTION
|
|
|
|
Create pull request for a project on GitHub via command line.
|
|
|
|
A personal access token is required for making the API call to open the pull request(s) in GitHub. [API Documentation here](https://docs.github.com/en/rest/reference/pulls#create-a-pull-request)
|
|
|
|
Make sure the personal access token has the right `OAuth` scopes for the repo(s)
|
|
|
|
Use `GITHUB_TOKEN` environment variable, or `git config --global --add git-extras.github-personal-access-token <your-personal-access-token>`
|
|
|
|
If using multiple accounts, override the global value in the specific repo using `git config git-extras.github-personal-access-token <other-acc-personal-access-token>`
|
|
|
|
## OPTIONS
|
|
|
|
<branch>
|
|
|
|
The local branch to push and use as the pull request head. The base branch is prompted separately.
|
|
|
|
## EXAMPLES
|
|
|
|
```
|
|
$ git pull-request master
|
|
Everything up-to-date
|
|
|
|
create pull-request for spacewander/spacewander-toolbox 'master'
|
|
|
|
title: test
|
|
body:
|
|
base [master]:
|
|
GitHub two-factor authentication code (leave blank if not set up):
|
|
|
|
...
|
|
```
|
|
|
|
## AUTHOR
|
|
|
|
Written by Tj Holowaychuk <<tj@vision-media.ca>>
|
|
|
|
## REPORTING BUGS
|
|
|
|
<<https://github.com/tj/git-extras/issues>>
|
|
|
|
## SEE ALSO
|
|
|
|
<<https://github.com/tj/git-extras>>
|