CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Wed, 23 Jul 2025 17:16:05 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090921045212
location: https://web.archive.org/web/20090921045212/https://github.com/guides/push-a-branch-to-github
server-timing: captures_list;dur=0.684094, exclusion.robots;dur=0.031112, exclusion.robots.policy;dur=0.016173, esindex;dur=0.013566, cdx.remote;dur=20.306470, LoadShardBlock;dur=471.357549, PetaboxLoader3.datanode;dur=261.479719, PetaboxLoader3.resolve;dur=137.805047
x-app-server: wwwb-app218
x-ts: 302
x-tr: 517
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: Wed, 23 Jul 2025 17:16:06 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.6.35
x-archive-orig-date: Mon, 21 Sep 2009 04:52:12 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "70000c32f6fde159bcf8b25849b7680f"
x-archive-orig-x-runtime: 143ms
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-content-length: 6728
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Mon, 21 Sep 2009 04:52:12 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="Sat, 22 Aug 2009 00:19:53 GMT", ; rel="memento"; datetime="Mon, 21 Sep 2009 04:52:12 GMT", ; rel="next memento"; datetime="Tue, 06 Oct 2009 23:51:01 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_11_20090920184030_crawl102.gpg-c/51_11_20090921044144_crawl101.arc.gz
server-timing: captures_list;dur=0.548467, exclusion.robots;dur=0.023037, exclusion.robots.policy;dur=0.012843, esindex;dur=0.011437, cdx.remote;dur=65.219279, LoadShardBlock;dur=347.847156, PetaboxLoader3.datanode;dur=348.288370, load_resource;dur=124.614259, PetaboxLoader3.resolve;dur=92.880944
x-app-server: wwwb-app218
x-ts: 200
x-tr: 579
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, 21 days ago
Versions:
This feature is coming soon. Sit tight!