Git的标签

标签是一个版本库的快照!

首先查看版本库的提交历史,目的:查看测试用的commit id

[root@git git]# git log
commit adce5d4544a1b888189fc55aac413cc0451b4fcf
Author: root
Date: Fri Dec 18 13:39:01 2015 -0800

v1

设置标签
[root@git git]# git tag -m "tag tag tag" v1 adce5d4544

查看所有的标签
[root@git git]# git tag
v1
[root@git git]#

删除标签

[root@git git]# git tag -d v1
Deleted tag 'v1' (was 2b70072)
[root@git git]# git tag
[root@git git]#

你可能感兴趣的:(Git的标签)