| CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Mon, 22 Dec 2025 19:33:26 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100214072416
location: https://web.archive.org/web/20100214072416/https://github.com/mojombo/github-gem
server-timing: captures_list;dur=0.528128, exclusion.robots;dur=0.039409, exclusion.robots.policy;dur=0.030813, esindex;dur=0.009674, cdx.remote;dur=6.641236, LoadShardBlock;dur=171.534150, PetaboxLoader3.datanode;dur=74.375485, PetaboxLoader3.resolve;dur=42.540781
x-app-server: wwwb-app211-dc8
x-ts: 302
x-tr: 200
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app211; path=/
x-location: All
x-as: 14061
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
HTTP/2 200
server: nginx
date: Mon, 22 Dec 2025 19:33:26 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Sun, 14 Feb 2010 07:24:16 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "9b16cb9fe73e61c7aa0ddcac46538e17"
x-archive-orig-x-runtime: 129ms
x-archive-orig-content-length: 26533
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Sun, 14 Feb 2010 07:24:16 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate"
content-security-policy: default-src 'self' 'unsafe-eval' 'unsafe-inline' data: blob: archive.org web.archive.org web-static.archive.org wayback-api.archive.org athena.archive.org analytics.archive.org pragma.archivelab.org wwwb-events.archive.org
x-archive-src: TLA-20100214062202-00695-00704-ia360920-20100214134402-00000-c/TLA-20100214071117-00799-ia360906.us.archive.org.warc.gz
server-timing: captures_list;dur=0.470719, exclusion.robots;dur=0.014917, exclusion.robots.policy;dur=0.006421, esindex;dur=0.009980, cdx.remote;dur=22.975514, LoadShardBlock;dur=196.944368, PetaboxLoader3.datanode;dur=79.415419, PetaboxLoader3.resolve;dur=198.763345, load_resource;dur=116.996929
x-app-server: wwwb-app211-dc8
x-ts: 200
x-tr: 399
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
x-as: 14061
x-rl: 0
x-na: 0
x-page-cache: MISS
server-timing: MISS
x-nid: DigitalOcean
referrer-policy: no-referrer-when-downgrade
permissions-policy: interest-cohort=()
content-encoding: gzip
mojombo's github-gem at master - GitHub
This service is courtesy of Pledgie.
mojombo / github-gem forked from defunkt/github-gem
- Source
- Commits
- Network (65)
- Issues (0)
- Downloads (1)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
-
Branches (2)
- gist
- master ✓
- Tags (1)
Sending Request…
Enable Donations
Pledgie Donations
Once activated, we'll place the following badge in your repository's detail box:
The official `github` command line helper for simplifying your GitHub experience. — Read more
| name | age | message | |
|---|---|---|---|
| |
.gitignore | Fri May 02 13:37:44 -0700 2008 | add the gemspec, ya heard [defunkt] |
| |
LICENSE | Thu Feb 28 01:36:50 -0800 2008 | the manifesto [defunkt] |
| |
Manifest | Tue Jul 22 12:35:35 -0700 2008 | move extensions into github dir as to not pollu... [defunkt] |
| |
README | Thu Jun 12 18:01:09 -0700 2008 | Merge branch 'master' of git://github.com/pjhye... [defunkt] |
| |
Rakefile | Tue Jul 22 08:46:24 -0700 2008 | `rake test` should run `rake spec` [defunkt] |
| |
bin/ | Sat Mar 01 07:24:08 -0800 2008 | Added a bunch of specs and fixed lots of bugs [halorgium] |
| |
commands/ | Tue Sep 30 15:26:34 -0700 2008 | Add `github fetch <user> <branch>` command. Th... [mojombo] |
| |
github-gem.gemspec | Thu Jul 24 18:00:46 -0700 2008 | Changed path of 'extensions.rb' in the gemspec. [riquedafreak] |
| |
lib/ | Thu Jul 24 18:00:42 -0700 2008 | Fixed typo in comments. [riquedafreak] |
| |
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 https://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
