CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Wed, 23 Jul 2025 15:16:17 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20091006235101
location: https://web.archive.org/web/20091006235101/https://github.com/guides/push-a-branch-to-github
server-timing: captures_list;dur=0.705119, exclusion.robots;dur=0.025777, exclusion.robots.policy;dur=0.011576, esindex;dur=0.014357, cdx.remote;dur=61.467975, LoadShardBlock;dur=373.565041, PetaboxLoader3.datanode;dur=126.695396, PetaboxLoader3.resolve;dur=186.308676
x-app-server: wwwb-app215
x-ts: 302
x-tr: 478
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app215; 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: Wed, 23 Jul 2025 15:16:18 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Tue, 06 Oct 2009 23:51:01 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "5a94c9d70ffbc177644b58129f4024ab"
x-archive-orig-x-runtime: 57ms
x-archive-orig-content-length: 7166
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: Tue, 06 Oct 2009 23:51:01 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Fri, 13 Jun 2008 04:03:54 GMT", ; rel="prev memento"; datetime="Mon, 21 Sep 2009 04:52:12 GMT", ; rel="memento"; datetime="Tue, 06 Oct 2009 23:51:01 GMT", ; rel="next memento"; datetime="Thu, 03 Dec 2009 05:51:54 GMT", ; rel="last memento"; datetime="Mon, 05 Feb 2024 03:43:25 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: 51_12_20091006150227_crawl100_IndexOnly-c/51_12_20091006234511_crawl101.arc.gz
server-timing: captures_list;dur=0.837034, exclusion.robots;dur=0.033159, exclusion.robots.policy;dur=0.016661, esindex;dur=0.016058, cdx.remote;dur=246.808829, LoadShardBlock;dur=681.709932, PetaboxLoader3.datanode;dur=514.760992, PetaboxLoader3.resolve;dur=456.934633, load_resource;dur=352.651214
x-app-server: wwwb-app215
x-ts: 200
x-tr: 1347
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
Push a Branch to GitHub - Guides - GitHub
Guides: Push a Branch to GitHub
Guides: Push a Branch to GitHub
Github is all about sharing content, so at some point you’ll be willing to push from your local git repository to github’s. To push a local branch to your remote repository, do:
git push <remote_repository_name> <branch_name>
Examples:
Assuming you did git clone git://github.com/you/your-project.git
, hence origin
is the remote.
- pushing the branch my_new_branch
to your Github repos: git push origin my_new_branch
- merging the branch experiment
into master
and push it:
git checkout master
git merge experiment
git push origin master
To remove a useless branch after merging and/or pushing, see Guide: Remove a remote branch.
Last edited by jherdman, about 1 month ago
Versions:
This feature is coming soon. Sit tight!