Skip to content

Commit

Permalink
fix package metadata
Browse files Browse the repository at this point in the history
  • Loading branch information
sigma committed Jan 14, 2012
1 parent 9328341 commit 7e01a41
Showing 1 changed file with 20 additions and 3 deletions.
23 changes: 20 additions & 3 deletions magit-gh-pulls.el
@@ -1,9 +1,9 @@
;;; magit-gh-pulls.el --- GitHub pull requests plug-in for Magit
;;; magit-gh-pulls.el --- GitHub pull requests extension for Magit

;; Copyright (C) 2011 Yann Hodique

;; Author: Yann Hodique <yann.hodique@gmail.com>
;; Keywords:
;; Keywords: tools
;; Version: 0.3
;; Package-Requires: ((gh "0.4.3") (magit "1.1.0"))

Expand All @@ -24,7 +24,24 @@

;;; Commentary:

;;
;; This is an experimental magit extension for manipulating GitHub pull requests

;; In order to use this, configure your repository like:
;; $ git config --add magit.extension gh-pulls
;; # or whatever is required to load that extension in magit for
;; # this repository
;; $ git config magit.gh-pulls-repo = <user>/<repo>
;; # your github repository

;; and of course, load magit-gh-pulls.el

;; There are currently 3 bindings for pull requests:
;; `# g g` refreshes the list of pull requests
;; `# g f` fetches the commits associated with the pull request at point
;; `# g b` helps you creating a topic branch from a review request

;; Then, you can do whatever you want with the commit objects associated with
;; the pull request (merge, cherry-pick, diff, ...)

;;; Code:

Expand Down

0 comments on commit 7e01a41

Please sign in to comment.