CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Tue, 29 Jul 2025 15:35:47 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20091202080943
location: https://web.archive.org/web/20091202080943/https://github.com/guides/push-tags-to-github
server-timing: captures_list;dur=0.953203, exclusion.robots;dur=0.029858, exclusion.robots.policy;dur=0.014041, esindex;dur=0.015907, cdx.remote;dur=1011.094132, LoadShardBlock;dur=231.079496, PetaboxLoader3.datanode;dur=77.416308, PetaboxLoader3.resolve;dur=100.487009
x-app-server: wwwb-app225
x-ts: 302
x-tr: 1286
server-timing: TR;dur=0,Tw;dur=129,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: Tue, 29 Jul 2025 15:35:48 GMT
content-type: text/html; charset=utf-8
x-archive-orig-server: nginx/0.7.61
x-archive-orig-date: Wed, 02 Dec 2009 08:09:42 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-etag: "b8064339b565dc378abc70fe3b6a5d2d"
x-archive-orig-x-runtime: 134ms
x-archive-orig-content-length: 8341
x-archive-orig-set-cookie: _github_ses=BAh7BiIKZmxhc2hJQzonQWN0aW9uQ29udHJvbGxlcjo6Rmxhc2g6OkZsYXNoSGFzaHsABjoKQHVzZWR7AA%3D%3D--884981fc5aa85daf318eeff084d98e2cff92578f; path=/; expires=Wed, 01 Jan 2020 08:00:00 GMT; HttpOnly
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-guessed-content-type: text/html
x-archive-guessed-charset: utf-8
memento-datetime: Wed, 02 Dec 2009 08:09:43 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="Thu, 17 Sep 2009 02:59:53 GMT", ; rel="memento"; datetime="Wed, 02 Dec 2009 08:09:43 GMT", ; rel="next memento"; datetime="Mon, 04 Jan 2010 10:52:12 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_13_20091202033902_crawl100_IndexOnly-c/51_13_20091202080708_crawl101.arc.gz
server-timing: captures_list;dur=0.545144, exclusion.robots;dur=0.018535, exclusion.robots.policy;dur=0.008872, esindex;dur=0.012621, cdx.remote;dur=65.414945, LoadShardBlock;dur=350.468794, PetaboxLoader3.datanode;dur=376.312248, PetaboxLoader3.resolve;dur=381.671993, load_resource;dur=426.842647
x-app-server: wwwb-app225
x-ts: 200
x-tr: 886
server-timing: TR;dur=0,Tw;dur=200,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 bmaland, 2 months ago
Versions:
This feature is coming soon. Sit tight!