Skip to content
Closed
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
27 changes: 27 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
*.py[co]

# Packages
*.egg
*.egg-info
dist
build
eggs
parts
bin
var
sdist
develop-eggs
.installed.cfg

# Installer logs
pip-log.txt

# Unit test / coverage reports
.coverage
.tox

#Translations
*.mo

#Mr Developer
.mr.developer.cfg
2 changes: 1 addition & 1 deletion git-pull-request
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/env python2
#!/usr/bin/env python

"""git pull-request

Expand Down
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',
],
)