public
Fork of defunkt/github-gem
Description: The official `github` command line helper for simplifying your GitHub experience.
Homepage: http://github.com
Clone URL: git://github.com/halorgium/github-gem.git
Search Repo:
name age message
folder .gemified Fri Feb 29 21:21:19 -0800 2008 oh how i love you gemify! [defunkt]
folder .gitignore Wed Mar 19 09:42:18 -0700 2008 Ignore temporary files [halorgium]
folder LICENSE Thu Feb 28 01:36:50 -0800 2008 the manifesto [defunkt]
folder Manifest Mon Mar 03 11:46:12 -0800 2008 move to using Echoe [defunkt]
folder README Mon Mar 03 21:22:59 -0800 2008 Improved docs on how to pull changes [rmm5t]
folder Rakefile Mon Mar 03 11:46:12 -0800 2008 move to using Echoe [defunkt]
folder bin/ Sat Mar 01 07:24:08 -0800 2008 Added a bunch of specs and fixed lots of bugs [halorgium]
folder commands/ Wed Mar 19 09:51:02 -0700 2008 Refactor the helpers into the class. [halorgium]
folder lib/ Wed Mar 19 09:51:02 -0700 2008 Refactor the helpers into the class. [halorgium]
folder spec/ Wed Mar 19 09:51:02 -0700 2008 Refactor the helpers into the class. [halorgium]
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 github

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


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

- defunkt
- maddox
- halorgium