git tag //查看tag
git tag 0.52.0 commit_id //在某个commit 上打tag,如tag为0.52.0
git tag 0.52.0 -m "information"commit_id
git tag
git push origin 0.52.0 //本地tag推送到线上
git tag -d 0.52.0 //本地删除tag
git push origin :refs/tags/0.52.0 //本地tag删除了,再执行该句,删除线上tag
git打tag
最新推荐文章于 2024-01-05 13:57:25 发布