Monday, November 21, 2011

How to delete a Git tag

If you have a tag named " abcd " then you would just do this:

>git tag -d abcd
>git push origin :refs/tags/abcd

This command will remove the 'abcd' tag from the remote repository.

No comments:

Post a Comment