git之tag
Posted code.world
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了git之tag相关的知识,希望对你有一定的参考价值。
1、git tag //查看已有标签
2、git tag v0.1.2 //创建标签
git tag -a v0.1.2 -m “0.1.2版本” // 创建附注标签
3、git tag -d v0.1.2 // 删除标签
4、git push origin v0.1.2 // 将v0.1.2标签提交到git服务器
git push origin –tags // 将本地所有标签一次性提交到git服务器
5、git tag -l ‘*v0.1.*’ // 搜索符合模式的标签
6、git show v0.1.2 //查看标签的版本信息
注:q退出git show
以上是关于git之tag的主要内容,如果未能解决你的问题,请参考以下文章