CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Sat, 19 Jul 2025 16:46:44 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090308015651
location: https://web.archive.org/web/20090308015651/https://github.com/guides/push-tags-to-github
server-timing: captures_list;dur=0.497703, exclusion.robots;dur=0.018349, exclusion.robots.policy;dur=0.009974, esindex;dur=0.011653, cdx.remote;dur=7.834896, LoadShardBlock;dur=748.222535, PetaboxLoader3.datanode;dur=204.040775, PetaboxLoader3.resolve;dur=375.804139
x-app-server: wwwb-app225
x-ts: 302
x-tr: 782
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app225; 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: Sat, 19 Jul 2025 16:46:45 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.6.26
x-archive-orig-date: Sun, 08 Mar 2009 01:56:51 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-x-runtime: 141ms
x-archive-orig-etag: "82697cbe178ec19456d6d65f2aedea18"
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-content-length: 7156
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Sun, 08 Mar 2009 01:56:51 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, 04 Feb 2009 03:11:35 GMT", ; rel="memento"; datetime="Sun, 08 Mar 2009 01:56:51 GMT", ; rel="next memento"; datetime="Wed, 22 Apr 2009 12:50:55 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_8_20090308011100_crawl101-c/51_8_20090308015412_crawl101.arc.gz
server-timing: captures_list;dur=0.808053, exclusion.robots;dur=0.034032, exclusion.robots.policy;dur=0.013027, esindex;dur=0.020102, cdx.remote;dur=22.871934, LoadShardBlock;dur=167.504368, PetaboxLoader3.datanode;dur=149.438038, load_resource;dur=99.104164, PetaboxLoader3.resolve;dur=55.334980
x-app-server: wwwb-app225
x-ts: 200
x-tr: 334
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/0.1
Last edited by rfletcher, 4 days ago
Versions:
This feature is coming soon. Sit tight!