git tag管理
Posted tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git tag管理相关的知识,希望对你有一定的参考价值。
操作 | 实例 |
创建标签 | git tag -a V1.2 -m ‘WebSite version 1.2‘ |
查看标签 | git tag / git show V1.2 |
远程推送 | git push origin --tags |
删除标签 | git tag -d V1.2 |
删除远程标签 | git push origin :refs/tags/V1.2 |
获取远程版本 | git fetch origin tag V1.2 |
参考:
http://yijiebuyi.com/blog/007269d04d5096d9397ce3daf9d84c48.html
以上是关于git tag管理的主要内容,如果未能解决你的问题,请参考以下文章