GIT EXPERIENCE

You are viewing an old version (v. 1) of this page.
The latest version is v. 63, last edited on Jun 15, 2019 (view differences | )
view page history | view next version >>

How to: Delete a remote Git tag

Probably you don’t need to do this often (if ever at all) but just in case, here is how to delete a tag from a remote Git repository.

If you have a tag named ‘mytag’ then you would just do this:

git tag -d mytag
git push origin :refs/tags/mytag

That will remove ‘mytag’ from the remote repository (E.g Github).

Enter labels to add to this page:
Please wait 
Looking for a label? Just start typing.