NAME

prq - Command-line tool to query GitHub pull requests

VERSION

version 0.2.0

SYNOPSIS

$ prq
$ prq list closed # not shown by default
$ prq show 7      # also includes comments
$ prq patch 7     # can be piped to colordiff if you like colors
$ prq checkout 7  # create upstream tracking branch pr/7
$ prq help

$ prq login       # Get access token for commands below
$ prq close 7
$ prq open 7
$ prq comment 7 'This is good stuff!'

INSTALLATION

Install it by just typing in these few lines in your shell:

$ curl -L http://cpanmin.us | perl - --self-upgrade
$ cpanm App::GitHubPullRequest

The following external programs are required:

CAVEATS

If you don't authenticate with GitHub using the login command, it will use unauthenticated API requests where possible, which has a rate-limit of 60 requests. If you login first it should allow 5000 requests before you hit the limit.

You must be standing in a directory that is a git dir and that directory must have a remote that points to github.com for the tool to work.

SEE ALSO

SEMANTIC VERSIONING

This module uses semantic versioning concepts from http://semver.org/.

AUTHOR

Robin Smidsrød <robin@smidsrod.no>

COPYRIGHT AND LICENSE

This software is copyright (c) 2013 by Robin Smidsrød.

This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.