CARVIEW |
Select Language
HTTP/2 302
server: nginx
date: Mon, 21 Jul 2025 19:43:59 GMT
content-type: text/plain; charset=utf-8
content-length: 0
x-archive-redirect-reason: found capture at 20090423131106
location: https://web.archive.org/web/20090423131106/https://github.com/guides/push-tags-to-github.atom
server-timing: captures_list;dur=1.320381, exclusion.robots;dur=0.043370, exclusion.robots.policy;dur=0.019770, esindex;dur=0.020429, cdx.remote;dur=40.314628, LoadShardBlock;dur=309.354518, PetaboxLoader3.datanode;dur=53.598529, PetaboxLoader3.resolve;dur=104.866223
x-app-server: wwwb-app221
x-ts: 302
x-tr: 437
server-timing: TR;dur=0,Tw;dur=0,Tc;dur=0
set-cookie: SERVER=wwwb-app221; 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: Mon, 21 Jul 2025 19:44:00 GMT
content-type: application/atom+xml; charset=utf-8
content-length: 14100
x-archive-orig-server: nginx/0.6.31
x-archive-orig-date: Thu, 23 Apr 2009 13:11:05 GMT
x-archive-orig-connection: close
x-archive-orig-status: 200 OK
x-archive-orig-x-runtime: 92ms
x-archive-orig-etag: "34ef846d12789694b9bab207f94a64c6"
x-archive-orig-cache-control: private, max-age=0, must-revalidate
x-archive-orig-content-length: 14100
cache-control: max-age=1800
x-archive-guessed-content-type: text/xml
x-archive-guessed-charset: utf-8
memento-datetime: Thu, 23 Apr 2009 13:11:06 GMT
link: ; rel="original", ; rel="timemap"; type="application/link-format", ; rel="timegate", ; rel="first memento"; datetime="Sat, 27 Dec 2008 01:03:13 GMT", ; rel="prev memento"; datetime="Sat, 27 Dec 2008 01:03:13 GMT", ; rel="memento"; datetime="Thu, 23 Apr 2009 13:11:06 GMT", ; rel="last memento"; datetime="Thu, 23 Apr 2009 13:11:06 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: 52_9_20090423112132_crawl100-c/52_9_20090423130708_crawl101.arc.gz
server-timing: captures_list;dur=0.491919, exclusion.robots;dur=0.019051, exclusion.robots.policy;dur=0.008553, esindex;dur=0.010423, cdx.remote;dur=114.577658, LoadShardBlock;dur=336.930688, PetaboxLoader3.datanode;dur=208.410641, PetaboxLoader3.resolve;dur=316.936031, load_resource;dur=296.979850
x-app-server: wwwb-app221
x-ts: 200
x-tr: 788
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=()
accept-ranges: bytes
tag:github.com,2008:/guides/push-tags-to-github
GitHub Guides - Push tags to github
2009-03-12T16:01:27-07:00
tag:github.com,2008:Guide/58
2008-07-17T06:03:08-07:00
2009-03-12T16:01:27-07:00
Push tags to github - version 10
Thu Mar 12 16:01:27 -0700 2009
See <a href="https://www.kernel.org/pub/software/scm/git/docs/git-tag.html">git-tag</a> on how to create a tag.
E.g:
<pre class="console"><span>$</span> git tag -a -m "tagging version 1.0" 1.0<span></pre>
Use git-push with the—tags option to push them to the remote (github in this case).
<pre class="console"><span>$</span> git push --tags<span></pre>
<h2>Sign your tags with <span class="caps">GPG</span> for increased security</h2>
You may want to sign your tag with your <span class="caps">GPG</span> key for improved security. Assuming you have setup <span class="caps">GPG</span> correctly on your system, you use the following command instead of the one mentioned above. You can push your tags as normal.
<pre class="console"><span>$</span> git tag -s -m "tagging version 1.0" 1.0<span></pre>
Later you may validate the tag:
<pre class="console"><span>$</span> git tag -v 1.0<span></pre>
<h2>Delete existing tags</h2>
<p>Deleting a tag locally is as simple as:</p>
<pre class="console"><span>$</span> git tag -d "1.0"<span></pre>
To push the deletion to GitHub:
<pre class="console"><span>$</span> git push origin :refs/tags/1.0<span></pre>
rfletcher
tag:github.com,2008:Guide/58
2008-07-17T06:03:08-07:00
2009-03-03T10:51:53-08:00
Push tags to github - version 9
Tue Mar 03 10:51:53 -0800 2009
See <a href="https://www.kernel.org/pub/software/scm/git/docs/git-tag.html">git-tag</a> on how to create a tag.
E.g:
<pre class="console"><span>$</span> git tag -a -m "tagging version 1.0" 1.0<span></pre>
Use git-push with the—tags option to push them to the remote (github in this case).
<pre class="console"><span>$</span> git push --tags<span></pre>
<h2>Sign your tags with <span class="caps">GPG</span> for increased security</h2>
You may want to sign your tag with your <span class="caps">GPG</span> key for improved security. Assuming you have setup <span class="caps">GPG</span> correctly on your system, you use the following command instead of the one mentioned above. You can push your tags as normal.
<pre class="console"><span>$</span> git tag -s -m "tagging version 1.0" 1.0<span></pre>
Later you may validate the tag:
<pre class="console"><span>$</span> git tag -v 1.0<span></pre>
<h2>Delete existing tags</h2>
<p>Deleting a tag locally is as simple as:</p>
<pre class="console"><span>$</span> git tag -d 1.0<span></pre>
To push the deletion to GitHub:
<pre class="console"><span>$</span> git push origin :refs/tags/0.1<span></pre>
rfletcher
tag:github.com,2008:Guide/58
2008-07-17T06:03:08-07:00
2009-01-21T07:22:44-08:00
Push tags to github - version 8
Wed Jan 21 07:22:44 -0800 2009
See <a href="https://www.kernel.org/pub/software/scm/git/docs/git-tag.html">git-tag</a> on how to create a tag.
E.g:
<pre class="console"><span>$</span> git tag -a -m "tagging version 1.0" 1.0<span></pre>
Use git-push with the—tags option to push them to the remote (github in this case).
<pre class="console"><span>$</span> git push --tags<span></pre>
<h2>Sign your tags with <span class="caps">GPG</span> for increased security</h2>
You may want to sign your tag with your <span class="caps">GPG</span> key for improved security. Assuming you have setup <span class="caps">GPG</span> correctly on your system, you use the following command instead of the one mentioned above. You can push your tags as normal.
<pre class="console"><span>$</span> git tag -s -m "tagging version 1.0" 1.0<span></pre>
Later you may validate the tag:
<pre class="console"><span>$</span> git tag -v 1.0<span></pre>
ariejan
tag:github.com,2008:Guide/58
2008-07-17T06:03:08-07:00
2009-01-19T03:02:31-08:00
Push tags to github - version 7
Mon Jan 19 03:02:31 -0800 2009
See <a href="https://www.kernel.org/pub/software/scm/git/docs/git-tag.html">git-tag</a> on how to create a tag.
E.g:
<pre class="console"><span>$</span> git tag -a -m "tagging version 1.0" 1.0<span></pre>
Use git-push with the—tags option to push them to the remote (github in this case).
<pre class="console"><span>$</span> git push --tags<span></pre>
<h2>Sign your tags with <span class="caps">GPG</span> for increased security</h2>
You may want to sign your tag with your <span class="caps">GPG</span> key for improved security. Assuming you have setup <span class="caps">GPG</span> correctly on your system, you use the following command instead of the one mentioned above. You can push your tags as normal.
<pre class="console"><span>$</span> git tag -v -m "tagging version 1.0" 1.0<span></pre>
Later you may validate the tag:
<pre class="console"><span>$</span> git tag -v 1.0<span></pre>
ariejan
tag:github.com,2008:Guide/58
2008-07-17T06:03:08-07:00
2009-01-19T03:00:10-08:00
Push tags to github - version 6
Mon Jan 19 03:00:10 -0800 2009
See <a href="https://www.kernel.org/pub/software/scm/git/docs/git-tag.html">git-tag</a> on how to create a tag.
E.g:
<pre class="console"><span>$</span> git tag -a -m "tagging version 1.0" 1.0<span></pre>
Use git-push with the --tags option to push them to the remote (github in this case).
<pre class="console"><span>$</span> git push --tags<span></pre>
Optionally, you may want to sign your tag with your GPG key. You can do so by using the following command (assuming you have setup GPG correctly on your system):
<pre class="console"><span>$</span> git tag -s -m "tagging version 1.0" 1.0<span></pre>
ariejan
tag:github.com,2008:Guide/58
2008-07-17T06:03:08-07:00
2009-01-19T02:59:56-08:00
Push tags to github - version 5
Mon Jan 19 02:59:56 -0800 2009
See <a href="https://www.kernel.org/pub/software/scm/git/docs/git-tag.html">git-tag</a> on how to create a tag.
E.g:
<pre class="console"><span>$</span> git tag -a -m "tagging version 1.0" 1.0<span></pre>
Use git-push with the --tags option to push them to the remote (github in this case).
<pre class="console"><span>$</span> git push --tags<span></pre>
*Sign your tags with GPG*
Optionally, you may want to sign your tag with your GPG key. You can do so by using the following command (assuming you have setup GPG correctly on your system):
<pre class="console"><span>$</span> git tag -s -m "tagging version 1.0" 1.0<span></pre>
ariejan
tag:github.com,2008:Guide/58
2008-07-17T06:03:08-07:00
2009-01-19T02:59:31-08:00
Push tags to github - version 4
Mon Jan 19 02:59:31 -0800 2009
See <a href="https://www.kernel.org/pub/software/scm/git/docs/git-tag.html">git-tag</a> on how to create a tag.
E.g:
<pre class="console"><span>$</span> git tag -a -m "tagging version 1.0" 1.0<span></pre>
Use git-push with the --tags option to push them to the remote (github in this case).
<pre class="console"><span>$</span> git push --tags<span></pre>
h2. Sign your tags with GPG
Optionally, you may want to sign your tag with your GPG key. You can do so by using the following command (assuming you have setup GPG correctly on your system):
<pre class="console"><span>$</span> git tag -s -m "tagging version 1.0" 1.0<span></pre>
ariejan
tag:github.com,2008:Guide/58
2008-07-17T06:03:08-07:00
2009-01-19T02:58:58-08:00
Push tags to github - version 3
Mon Jan 19 02:58:58 -0800 2009
See <a href="https://www.kernel.org/pub/software/scm/git/docs/git-tag.html">git-tag</a> on how to create a tag.
E.g:
<pre class="console"><span>$</span> git tag -a -m "tagging version 1.0" 1.0<span></pre>
Use git-push with the --tags option to push them to the remote (github in this case).
<pre class="console"><span>$</span> git push --tags<span></pre>
Optionally, you may want to sign your tag with your GPG key. You can do so by using the following command:
<pre class="console"><span>$</span> git tag -s -m "tagging version 1.0" 1.0<span></pre>
ariejan
tag:github.com,2008:Guide/58
2008-07-17T06:03:08-07:00
2009-01-19T02:58:00-08:00
Push tags to github - version 2
Mon Jan 19 02:58:00 -0800 2009
See <a href="https://www.kernel.org/pub/software/scm/git/docs/git-tag.html">git-tag</a> on how to create a tag.
E.g:
<pre class="console"><span>$</span> git tag -a -m "tagging version 1.0" 1.0<span></pre>
If you have setup GPG correctly, you may sign the tag for extra security. This will search for a key with your git name and email:
<pre class="console"><span>$</span> git tag -s -m "tagging version 1.0" 1.0<span></pre>
Use git-push with the --tags option to push them to the remote (github in this case).
<pre class="console"><span>$</span> git push --tags<span></pre>
ariejan
tag:github.com,2008:Guide/58
2008-07-17T06:03:08-07:00
2008-07-17T06:03:08-07:00
Push tags to github - version 1
Thu Jul 17 06:03:08 -0700 2008
See <a href="https://www.kernel.org/pub/software/scm/git/docs/git-tag.html">git-tag</a> on how to create a tag.
E.g:
<pre class="console"><span>$</span> git tag -a -m "tagging version 1.0" 1.0<span></pre>
Use git-push with the --tags option to push them to the remote (github in this case).
<pre class="console"><span>$</span> git push --tags<span></pre>
alloy