git-15-添加标签

1、 当前最新提交分支上,打上标签

git tag v0.9

2、 查看所有标签

git tag

在这里插入图片描述

3、需要将标签打到固定的commit id上。

//查找历史commit id
git log --pretty=oneline --abbrev-commit

git-15-添加标签_第1张图片

git tag v0.8 4638bf9

git-15-添加标签_第2张图片
4、 再查看标签
在这里插入图片描述

5、查看标签信息
git-15-添加标签_第3张图片

6、创建带有说明的标签,用-a指定标签名,-m指定说明文字

git tag -a v0.7 -m "version 0.7 released" e646ffb

git-15-添加标签_第4张图片
总结:
命令1:创建标签,默认为打在HEAD

git tag v0.9

命令2:查看所有标签

git tag

命令3:标签打到固定commit id上

  git tav v0.8 4638bf9

命令4:查看标签信息

git show v0.9

命令5:创建带有说明的标签,用-a指定标签名,-m指定说明文字

 git tag -a v0.7 -m "version 0.7 released" e646ffb

你可能感兴趣的:(git,git,github)