建立标签git
git tag -a v0.4 -m '这是标签的描述'
查看标签code
git tag git show v0.4
删除标签it
git tag -d v0.4
推送推送
git push origin v0.4