美文网首页Git
Git的标签

Git的标签

作者: 如来自然 | 来源:发表于2016-01-05 19:40 被阅读14次

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

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

    [root@git git]# git log
    commit adce5d4544a1b888189fc55aac413cc0451b4fcf
    Author: root <root@bogon.(none)>
    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的标签

        本文链接:https://www.haomeiwen.com/subject/uqezhttx.html