Git tag: Difference between revisions

From NovaOrdis Knowledge Base
Jump to navigation Jump to search
Line 56: Line 56:
If tag was pushed to a remote repository and now it should be removed, deleting it locally and then <tt>push --follow-tags</tt> is NOT sufficient.
If tag was pushed to a remote repository and now it should be removed, deleting it locally and then <tt>push --follow-tags</tt> is NOT sufficient.


You need to remove it locally following [git tag#RemoveTag] and then
You need to remove it locally following [[git tag#RemoveTag] and then


{{{
{{{

Revision as of 12:32, 22 December 2018

External

Internal

Overview

Create, list, delete or verify a tag object. To check out the commit associated with a specific tag into a detached HEAD, see git checkout.

By default, tags are not pushed to remote server. For more details see [[]] below.

List Tags

Tags can be listed based on a given pattern. All tags are listed if no pattern is given.

git tag [-l] [name-pattern]
git tag
git tag -l

Create a Tag

git tag '<tag-name>'

Pushing a Tag to a Remote Server

By default, the git push command doesn’t transfer tags to remote servers. You will have to explicitly push tags to a shared server after you have created them. This process is just like sharing remote branches  - you can run git push origin <tagname>:

git push origin <tagname>
git push origin release-1.2.1

Pushing All Tags

git push origin --tags

Alternatively:

git push --follow-tags

or set "push.followTags" to do this automatically on each push.

Remove a Tag

Remove a Tag Locally

git tag -d <tag-name>

Remove a Tag Remotely

If tag was pushed to a remote repository and now it should be removed, deleting it locally and then push --follow-tags is NOT sufficient.

You need to remove it locally following [[git tag#RemoveTag] and then

{{{ git push origin :refs/tags/<my-tag-name> }}}

Result:

{{{ NOMBP2:api ovidiu$ git push origin :refs/tags/release-test-1

To git@github.com:amgenpaas/api.git

- [deleted]         release-test-1

}}}