OperateTag
OriginalLess than 1 minute
Conclusion
delete the specified local tag
git tag -d <tag_name>
delete the specified remote tag
git push origin :refs/tags/<tag_name>
push a local tag
git push origin <tag_name>
push all unpushed local tags
git push origin --tags