README.md in git-pr-0.0.2 vs README.md in git-pr-0.0.3
- old
+ new
@@ -1,10 +1,11 @@
# Git::Pr
[![Build Status](https://secure.travis-ci.org/nistude/git-pr.png?branch=master)](http://travis-ci.org/nistude/git-pr)
-[![Dependency Status](https://gemnasium.com/nistude/git-pr.png?travis)](https://gemnasium.com/nistude/git-pr)
[![Code Climate](https://codeclimate.com/github/nistude/git-pr.png)](https://codeclimate.com/github/nistude/git-pr)
+[![Dependency Status](https://gemnasium.com/nistude/git-pr.png?travis)](https://gemnasium.com/nistude/git-pr)
+[![Gem Version](https://badge.fury.io/rb/git-pr.png)](http://badge.fury.io/rb/git-pr)
`git-pr` facilitates GitHub pull requests.
## Installation
@@ -26,14 +27,20 @@
and configure your git for github:
$ git config --global github.user your_github_user_name
$ git config --global github.token your_github_personal_access_token
+To use a private GitHub Enterprise installation:
+
+ $ git config --global github.apiEndpoint https://my.server/api/v3
+
## Usage
List pull requests:
$ git pr list # open pull requests for the active repository
+ $ git pr list --all # open pull requests for all my user and
+ # organization repositories
You can also configure repository profiles and use those to query multiple
repositories at once:
$ git config --global --add pr.repository_profile.work org/one