CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Wed, 30 Jul 2025 05:40:08 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090814073603
location: https://web.archive.org/web/20090814073603/https://github.com/guides/push-tags-to-github
server-timing: captures_list;dur=0.768424, exclusion.robots;dur=0.025480, exclusion.robots.policy;dur=0.011534, esindex;dur=0.015165, cdx.remote;dur=262.128625, LoadShardBlock;dur=647.632625, PetaboxLoader3.resolve;dur=415.083208, PetaboxLoader3.datanode;dur=148.073412
x-app-server: wwwb-app212
x-ts: 302
x-tr: 958
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app212; 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 05:40:09 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.6.26
x-archive-orig-date: Fri, 14 Aug 2009 07:36:02 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-x-runtime: 164ms
x-archive-orig-etag: "fb797b44864b814eed248fb7f46fcfc0"
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-content-length: 7214
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Fri, 14 Aug 2009 07:36:03 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="Mon, 13 Jul 2009 21:43:23 GMT", ; rel="memento"; datetime="Fri, 14 Aug 2009 07:36:03 GMT", ; rel="next memento"; datetime="Thu, 17 Sep 2009 02:59:53 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_11_20090813235915_crawl101.gpg-c/51_11_20090814073115_crawl101.arc.gz
server-timing: captures_list;dur=0.544316, exclusion.robots;dur=0.015765, exclusion.robots.policy;dur=0.008207, esindex;dur=0.010687, cdx.remote;dur=90.289081, LoadShardBlock;dur=195.265508, PetaboxLoader3.datanode;dur=205.894999, load_resource;dur=190.533252, PetaboxLoader3.resolve;dur=88.914215
x-app-server: wwwb-app212
x-ts: 200
x-tr: 513
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, 5 months ago
Versions:
This feature is coming soon. Sit tight!