CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Wed, 30 Jul 2025 00:33:38 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090713214323
location: https://web.archive.org/web/20090713214323/https://github.com/guides/push-tags-to-github
server-timing: captures_list;dur=0.751473, exclusion.robots;dur=0.027731, exclusion.robots.policy;dur=0.011733, esindex;dur=0.015112, cdx.remote;dur=3106.263865, LoadShardBlock;dur=293.470761, PetaboxLoader3.datanode;dur=96.105542, PetaboxLoader3.resolve;dur=127.259478
x-app-server: wwwb-app220
x-ts: 302
x-tr: 3429
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app220; 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, 30 Jul 2025 00:33:38 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.6.26
x-archive-orig-date: Mon, 13 Jul 2009 21:43:22 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-x-runtime: 161ms
x-archive-orig-etag: "dbd8a9d1ce6ef95f7ae5af6bbd37f9bd"
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-content-length: 7178
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Mon, 13 Jul 2009 21:43:23 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Thu, 31 Jul 2008 12:23:29 GMT", ; rel="prev memento"; datetime="Wed, 22 Apr 2009 12:50:55 GMT", ; rel="memento"; datetime="Mon, 13 Jul 2009 21:43:23 GMT", ; rel="next memento"; datetime="Fri, 14 Aug 2009 07:36:03 GMT", ; rel="last memento"; datetime="Sat, 23 Nov 2024 06:07:18 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_10_20090713061030_crawl102.gpg-c/51_10_20090713213934_crawl101.arc.gz
server-timing: captures_list;dur=0.520438, exclusion.robots;dur=0.020279, exclusion.robots.policy;dur=0.009714, esindex;dur=0.009945, cdx.remote;dur=96.163936, LoadShardBlock;dur=71.861122, PetaboxLoader3.datanode;dur=105.134249, load_resource;dur=90.056693, PetaboxLoader3.resolve;dur=37.819816
x-app-server: wwwb-app220
x-ts: 200
x-tr: 302
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 tags to github - Guides - GitHub
Guides: Push tags to github
Guides: Push tags to github
See git-tag on how to create a tag.
E.g:
$ git tag -a -m "tagging version 1.0" 1.0
Use git-push with the —tags option to push them to the remote (github in this case).
$ git push --tags
Sign your tags with GPG for increased security
You may want to sign your tag with your GPG key for improved security. Assuming you have setup GPG correctly on your system, you use the following command instead of the one mentioned above. You can push your tags as normal.
$ git tag -s -m "tagging version 1.0" 1.0
Later you may validate the tag:
$ git tag -v 1.0
Delete existing tags
Deleting a tag locally is as simple as:
$ git tag -d "1.0"
To push the deletion to GitHub:
$ git push origin :refs/tags/1.0
Last edited by rfletcher, 4 months ago
Versions:
This feature is coming soon. Sit tight!