git tag //查看tag
git tag test_tag //在git打tag
git push origin test_tag //!!!本地tag推送到线上...
git tag -d test_tag //本地删除
git push origin :refs/tags/test_tag //本地tag删除了,再执行该句,删除线上tag
git tag //查看tag
git tag test_tag //在git打tag
git push origin test_tag //!!!本地tag推送到线上...
git tag -d test_tag //本地删除
git push origin :refs/tags/test_tag //本地tag删除了,再执行该句,删除线上tag