git tags 管理
Posted toyflivver
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git tags 管理相关的知识,希望对你有一定的参考价值。
- 新建标签: git tag -a V1.1 -m "some thing" (新建标签前请先commit代码)
- 推送标签: git push --tags (推送标签前请先推送代码)
- 删除本地标签: git tag -d V1.1
- 删除远程标签: git push origin :refs/tags/V1.1
- 查看标签: git tag -l (会列出一个列表)
- 查看标签详情: git show v0.1.1 (查看特定标签的详情)
以上是关于git tags 管理的主要内容,如果未能解决你的问题,请参考以下文章