mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 15:36:21 -04:00
47 lines
826 B
Markdown
47 lines
826 B
Markdown
git-pull-request(1) -- Create pull request for GitHub project
|
|
================================
|
|
|
|
## SYNOPSIS
|
|
|
|
`git-pull-request` [<target branch>]
|
|
|
|
## DESCRIPTION
|
|
|
|
Create pull request for a project on GitHub via commandline.
|
|
|
|
Uses the email from `git config user.email` to open the pull request.
|
|
|
|
## OPTIONS
|
|
|
|
<target branch>
|
|
|
|
The target branch you want to send pull request to.
|
|
|
|
## EXAMPLES
|
|
|
|
```
|
|
$ git pull-request master
|
|
Everything up-to-date
|
|
|
|
create pull-request for spacewander/spacewander-toolbox 'master'
|
|
|
|
title: test
|
|
body:
|
|
base [master]:
|
|
|
|
Enter host password for user 'spacewanderlzx@gmail.com':
|
|
...
|
|
```
|
|
|
|
## 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>>
|