GitHub Sale: sign up for any paid plan this week and pay nothing until January 1, 2009!  [ hide ]

public
Rubygem
Description: The official `github` command line helper for simplifying your GitHub experience.
Homepage: http://github.com
Clone URL: git://github.com/defunkt/github-gem.git
commit  b30f2991e48524981a0369c0b9526a7f862d2002
tree    c733db1d60b0e39727fef74b4d689bd58ad6ccba
parent  4b5d9e2c4b561ecae03e89547806a6ea35c2fc49
name age message
file .gitignore Tue Nov 25 18:04:07 -0800 2008 add setup.rb for those without rubygems [pjhyett]
file LICENSE Thu Feb 28 01:36:50 -0800 2008 the manifesto [defunkt]
file Manifest Tue Nov 18 15:13:03 -0800 2008 update manifest [defunkt]
file README Fri Nov 14 01:08:03 -0800 2008 Updated README to use correct clone arguments. [badcarl]
file Rakefile Thu Nov 13 00:52:49 -0800 2008 0.3.0 & gh [defunkt]
directory bin/ Tue Nov 25 18:02:53 -0800 2008 only add lib to if it exists [pjhyett]
directory commands/ Mon Jul 07 14:54:36 -0700 2008 Merge commit 'snowblink/remove_launchy_requirem... [kballard]
file github-gem.gemspec Wed Dec 03 19:13:57 -0800 2008 i blame pj [defunkt]
directory lib/ Wed Dec 03 17:34:56 -0800 2008 Fallback to network cache when the network is u... [dustin]
directory spec/ Thu Nov 13 13:56:10 -0800 2008 Added some specs for the new :alias option [eolamey]
README
The GitHub Gem
=============

This gem'll work hand-in-hand with GitHub's API to help you out.

Catch us in the #github room on freenode if you want to get involved.  Or just fork and send a pull request.

===========
Getting started
===========

  $ gem install defunkt-github -s http://gems.github.com

Run it:

  $ github <command> <args>


=============
Pulling Changes
=============

Let's say you just forked `github-gem` on GitHub from defunkt.

  $ git clone git://github.com/YOU/github-gem.git
  $ cd github-gem
  $ github pull defunkt

This will setup a remote and branch for defunkt's repository at master. 
In this case, a 'defunkt/master' branch.

If defunkt makes some changes you want, simply `github pull defunkt`.  This will
leave you in the 'defunkt/master' branch after pulling changes from defunkt's
remote.  After confirming that defunkt's changes were what you wanted, run `git
checkout master` and then `git merge defunkt/master` to merge defunkt's changes
into your own master branch.  In summary:

  $ github pull defunkt
  $ git checkout master
  $ git merge defunkt/master

If you've already reviewed defunkt's changes and just want to merge them into your 
master branch, use the `merge` flag:

  $ github pull --merge defunkt

==========
Contributors
==========

- defunkt
- maddox
- halorgium
- kballard