mojombo / github-gem forked from defunkt/github-gem

The official `github` command line helper for simplifying your GitHub experience.

This URL has Read+Write access

riquedafreak (author)
Thu Jul 24 17:06:47 -0700 2008
kballard (committer)
Thu Jul 24 18:00:46 -0700 2008
commit  fe1f852f3cf719c7cd86147031732f570ad89619
tree    fbfb5c4ef1f34d292b9ab3514c69fc1e58026e33
parent  85301991bd104643a19e1de739faf83192ce6ffe
name age message
file .gitignore Fri May 02 13:37:44 -0700 2008 add the gemspec, ya heard [defunkt]
file LICENSE Thu Feb 28 01:36:50 -0800 2008 the manifesto [defunkt]
file Manifest Tue Jul 22 12:35:35 -0700 2008 move extensions into github dir as to not pollu... [defunkt]
file README Thu Jun 12 18:01:09 -0700 2008 Merge branch 'master' of git://github.com/pjhye... [defunkt]
file Rakefile Tue Jul 22 08:46:24 -0700 2008 `rake test` should run `rake spec` [defunkt]
directory bin/ Sat Mar 01 07:24:08 -0800 2008 Added a bunch of specs and fixed lots of bugs [halorgium]
directory commands/ Loading commit data...
file github-gem.gemspec Thu Jul 24 18:00:46 -0700 2008 Changed path of 'extensions.rb' in the gemspec. [riquedafreak]
directory lib/ Thu Jul 24 18:00:42 -0700 2008 Fixed typo in comments. [riquedafreak]
directory spec/ Mon Jul 07 14:54:36 -0700 2008 Merge commit 'snowblink/remove_launchy_requirem... [kballard]
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