CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Tue, 29 Jul 2025 20:34:24 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20100424000215
location: https://web.archive.org/web/20100424000215/https://github.com/github/upload
server-timing: captures_list;dur=0.947069, exclusion.robots;dur=0.042453, exclusion.robots.policy;dur=0.020958, esindex;dur=0.018584, cdx.remote;dur=267.263837, LoadShardBlock;dur=291.651661, PetaboxLoader3.datanode;dur=56.080427, PetaboxLoader3.resolve;dur=121.399209
x-app-server: wwwb-app218
x-ts: 302
x-tr: 589
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app218; 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: Tue, 29 Jul 2025 20:34:26 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Sat, 24 Apr 2010 00:02:15 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "b207e297c5459902fc4221e38439a96c"
x-archive-orig-x-runtime: 175ms
x-archive-orig-content-length: 18536
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: Sat, 24 Apr 2010 00:02:15 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Mon, 19 Apr 2010 18:08:29 GMT", ; rel="prev memento"; datetime="Tue, 20 Apr 2010 22:48:56 GMT", ; rel="memento"; datetime="Sat, 24 Apr 2010 00:02:15 GMT", ; rel="next memento"; datetime="Wed, 08 Nov 2017 16:25:37 GMT", ; rel="last memento"; datetime="Fri, 11 Jul 2025 00:20:34 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_15_20100423222025_crawl101-c/52_15_20100424000142_crawl101.arc.gz
server-timing: captures_list;dur=0.541635, exclusion.robots;dur=0.018461, exclusion.robots.policy;dur=0.009418, esindex;dur=0.010865, cdx.remote;dur=1090.440370, LoadShardBlock;dur=352.959871, PetaboxLoader3.datanode;dur=120.666543, PetaboxLoader3.resolve;dur=509.573180, load_resource;dur=354.443602
x-app-server: wwwb-app218
x-ts: 200
x-tr: 1855
server-timing: TR;dur=0,Tw;dur=15,Tc;dur=1
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
github's upload at master - GitHub
github / upload
- Source
- Commits
- Network (1)
- Issues (0)
- Downloads (0)
- Wiki (1)
- Graphs
-
Branch:
master
click here to add a description
click here to add a homepage
upload /
name | age | message | |
---|---|---|---|
![]() |
README.md | Sat Apr 03 01:09:09 -0700 2010 | I swear I totally wrote the README from scratch [tekkub] |
![]() |
upload.rb | Sat Oct 24 15:41:34 -0700 2009 | And we have a release version [tekkub] |
README.md
GitHub Upload Script
github_upload
is a command line utility to allow quick uploading of files to non-repo storage on GitHub.
If can be used from within a local repo, or given an explicit repo name to upload to.
In repo:
$ cd my_local_repo
$ github_upload file_to_upload
Explicit:
$ github_upload file_to_upload myname/myrepo
github_upload requires you have Ruby and a few gems installed. See below for details.
Install
github_upload
is most easily installed as a standalone script:
$ curl -s https://github.com/github/upload/raw/master/upload.rb > ~/bin/github_upload
$ chmod 755 ~/bin/github_upload
$ gem install xml-simple mime-types
Assuming ~/bin/
is in your $PATH
, you just need to set your git config and you're ready to roll.
Setup
To use this script you need to have your GitHub username and token stored in your git config.
To test it run this:
$ git config --global github.user
$ git config --global github.token
If you see nothing, you need to set the config setting:
$ git config --global github.user YOUR_USER
$ git config --global github.token YOUR_TOKEN
See https://help.github.com/git-email-settings/ for more information.