$ git tag //列出git中现有的所有标签
$ git tag -l v1.4.2.* //按照字母表顺序给出tag
v1.4.2.1
v1.4.2.2
$ git tag -a v1.4 -m ‘version 1.4′ //创建标签, -a 加标签,-m 加标签注释。
$ git tag v1.4-lw //创建轻量级标签,不用-a,-m等参数
$ git show v1.4 //git show 命令查看相应标签的版本信息,并连同显示打标签时的提交对象
$ git tag -a v1.2 9fceb02 //为已提交的信息贴上标签,为校验码为9fceb02*的版本贴上标签。
$ git push --tags //如果上传到服务器时不能上传tag,可加上--tags命令。
阅读(9541) | 评论(0) | 转发(0) |