CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sun, 17 Aug 2025 02:45:41 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20080328035308
location: https://web.archive.org/web/20080328035308/https://github.com/eventualbuddha/sake-git/tree/master
server-timing: captures_list;dur=1.054596, exclusion.robots;dur=0.036005, exclusion.robots.policy;dur=0.015872, esindex;dur=0.018187, cdx.remote;dur=22.156803, LoadShardBlock;dur=478.219705, PetaboxLoader3.datanode;dur=232.971054, PetaboxLoader3.resolve;dur=195.202021
x-app-server: wwwb-app214
x-ts: 302
x-tr: 610
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: wb-p-SERVER=wwwb-app214; path=/
x-location: All
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: Sun, 17 Aug 2025 02:45:41 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.6.26
x-archive-orig-date: Fri, 28 Mar 2008 03:53:08 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "48692e8b6ab3d7409b154101e5eb99a0"
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-content-length: 12788
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Fri, 28 Mar 2008 03:53:08 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Fri, 28 Mar 2008 03:53:08 GMT", ; rel="memento"; datetime="Fri, 28 Mar 2008 03:53:08 GMT", ; rel="next memento"; datetime="Fri, 25 Jul 2008 06:12:30 GMT", ; rel="last memento"; datetime="Wed, 24 Jun 2009 17:40:45 GMT"
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: 52_2_20080328011750_crawl102-c/52_2_20080328035138_crawl103.arc.gz
server-timing: captures_list;dur=2.049915, exclusion.robots;dur=0.025550, exclusion.robots.policy;dur=0.011792, esindex;dur=0.012962, cdx.remote;dur=13.485465, LoadShardBlock;dur=98.697819, PetaboxLoader3.datanode;dur=117.937842, PetaboxLoader3.resolve;dur=82.395248, load_resource;dur=109.557176
x-app-server: wwwb-app214
x-ts: 200
x-tr: 265
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
x-location: All
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
eventualbuddha's sake-git at master — GitHub
Description: | A set of Sake tasks to make developing with Git easier. |
Clone URL: |
git://github.com/eventualbuddha/sake-git.git
Give this clone URL to anyone.
git clone git://github.com/eventualbuddha/sake-git.git
|
sake-git /
name | last modified | message | |
---|---|---|---|
![]() |
LICENSE | 23 days ago | Add some sort of license [eventualbuddha] |
![]() |
README | 23 days ago | Credit where credit is due. [eventualbuddha] |
![]() |
Rakefile | 23 days ago | First commit [eventualbuddha] |
![]() |
git.rake | 21 days ago | Don't raise an exception, just tell the user wh... [eventualbuddha] |
![]() |
gitconfig.sample | 23 days ago | First commit [eventualbuddha] |
README
Sake-Git ======== Here are a few Sake tasks to make developing with Git easier (and some corresponding Git aliases to make invoking them easier). Install them with: $ rake install Or, if you don't want to actually download this stuff, just use Sake: $ sake -i "https://github.com/eventualbuddha/sake-git/tree/master/git.rake?raw=true" Common Commands --------------- $ sake git:update Updates your current git repository, autodetecting whether you have a regular ol' git project or a git-svn project. Alias it to `git up' with this alias: [alias] up = !sake git:update $ sake git:push Commits any changes in your current branch not yet pushed upstream AND ports 'em over to master. Another alias for ya: [alias] ci = !sake git:push $ sake git:open [NAME=mynewbranch] Creates a new branch off master. Think of this as opening an issue, or a new path of development. Because of the way Rake handles (or _doesn't_ handle) arguments, the alias for this one is a little weird: [alias] open = !sake git:open NAME= -- $1 Allowing you to call it like so: $ git open mynewbranch You can even call it without the branch name and it'll ask you for it: $ git open * Name your branch: mynewbranch $ sake git:close [NAME=mynewbranch] This is open's brother, and should be used when you finish something and have already moved it to master or upstream. If you haven't yet, don't worry - this won't eat your data. Aliases for everyone: [alias] close = !sake git:close NAME= -- $1 Credits ------- Thanks to Coda Hale and everyone else at Wesabe for trying these out when I first wrote them and contributing tasks of their own, and to the Rubinius folks for giving me the idea in the first place.
This feature is coming soon. Sit tight!