git标签(tag)管理


使用 git tag 命令来添加新标签

git tag -a v1.4 -m 'version 1.4'

使用 git push 命令来将标签推送到远程仓库

git push origin v1.4:v1.4

Archives