git 常用操作

删除本地tag:

git tag -d v20190514

删除远程tag:

git push origin :refs/tags/v20190514

创建本地tag

git tag v0.0.1

推送本地tag

git push --tags
 
原文地址:https://www.cnblogs.com/mingv/p/14767152.html