【From】 https://www.cnblogs.com/mileSs/p/10218862.html
git tag //查看tag
git tag test_tag c809ddbf83939a89659e51dc2a5fe183af384233 //在某个commit c809ddb....上打tag
git tag
git push origin test_tag //!!!本地tag "test_tag" 推送到线上
git tag -d test_tag //本地删除tag "test_tag"
git push origin :refs/tags/test_tag //本地tag "test_tag" 删除了,再执行该句,删除线上tag "test_tag"