Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions git-pull-request.1
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
'\" t
.TH "GIT\-PULL\-REQUEST" "1" "07/27/2011" "" "Git Pull Request Manual"
.nh
.ad1
.SH "NAME"
git-pull-request \- Fetch and check out a github pull request into a branch
.SH "SYNOPSIS"
.sp
\fIgit pull-request\fR [\-r <repo>] [<pull request number>]
.SH "DESCRIPTION"
List pull requests for a repository at github\&. If a pull request number is
specified, that changeset will be pulled and checked out onto a branch\&.
.sp
.SH "OPTIONS"
.sp
\-h, \-\-help
.RS 4
Display a usage message\&.
.RE
.PP
\-r <repo>, \-\-repo <repo>
.RS 4
Use this github repo instead of the 'remote origin' or 'github.repo'
git config settings\&. Repo must be in "user/repository" form\&.
.RE
.SH "AUTHOR"
.sp
Written by Andreas Gohr <\m[blue]\fBandi@splitbrain\&.org\fR\m[]\d\s+2>
.sp
Additional contribs from S. Zachariah Sprackett <\m[blue]\fBzac@sprackett\&.com\fR\m[]\d\s+2>
17 changes: 17 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
from setuptools import setup, find_packages

setup(
name = 'git-pull-request',
version = '0.1',
packages = find_packages(),

install_requires = [
],

author = 'Andreas Gohr',
author_email = 'andi@splitbrain.org',

scripts = [
'git-pull-request',
],
)