CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Wed, 23 Jul 2025 22:47:07 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090917025953
location: https://web.archive.org/web/20090917025953/https://github.com/guides/push-tags-to-github
server-timing: captures_list;dur=3.430972, exclusion.robots;dur=0.056894, exclusion.robots.policy;dur=0.012159, esindex;dur=0.017155, cdx.remote;dur=30.691501, LoadShardBlock;dur=197.311889, PetaboxLoader3.datanode;dur=75.102223, PetaboxLoader3.resolve;dur=77.439699
x-app-server: wwwb-app220
x-ts: 302
x-tr: 259
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, 23 Jul 2025 22:47:07 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.6.35
x-archive-orig-date: Thu, 17 Sep 2009 02:59:52 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "5caf1b9f75fe0fe7870a830ec5a2714a"
x-archive-orig-x-runtime: 143ms
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-content-length: 7418
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Thu, 17 Sep 2009 02:59:53 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="Fri, 14 Aug 2009 07:36:03 GMT", ; rel="memento"; datetime="Thu, 17 Sep 2009 02:59:53 GMT", ; rel="next memento"; datetime="Wed, 02 Dec 2009 08:09:43 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_20090916163505_crawl100.gpg-c/51_11_20090917025950_crawl101.arc.gz
server-timing: captures_list;dur=0.643210, exclusion.robots;dur=0.028331, exclusion.robots.policy;dur=0.013009, esindex;dur=0.012562, cdx.remote;dur=74.386468, LoadShardBlock;dur=188.101932, PetaboxLoader3.datanode;dur=136.483060, PetaboxLoader3.resolve;dur=100.235425, load_resource;dur=95.918126
x-app-server: wwwb-app220
x-ts: 200
x-tr: 410
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
You can also push a single tag:
$ git push origin tag name-of-tag
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 Chrononaut, 6 days ago
Versions:
This feature is coming soon. Sit tight!