Git: Common Tagging Commands
Below are the common tagging commands that usually use based scenario event – accidentally name wrong tag, need to retagging or probably want some commit available at particular tag..retagging required.
# display all tags available git tag # add local tag git tag youTagName # remove local tag git tag -d yourTagName # push all local tags to remote git push origin --tags # push specific tag to remote git push origin :refs/tags/yourTagName