美文网首页技术CodeDevOps/SRE
Git 17使用Tag标签 系统版本号管理

Git 17使用Tag标签 系统版本号管理

作者: 昵称啦啦啦 | 来源:发表于2018-11-30 13:40 被阅读0次

    GIt 系统版本号管理

    =========

    命令

    • 系统版本号管理
    • git tag [tag_name] + [commit_id] 创建版本
    • git show [tag_name] 查看版本
    • git tag -d [tag_name] 删除版本

    系统版本号管理

    任何软件系统,应用程序在发布时都应该给一个版本号,来管理每次发布的内容,便于今后的管理。

    1.1.4

    NNN.abc.xxx

    • NNN:大版本号
    • abc:每次做出的小更新时,发布的版本号
    • xxx:每次bug修正时发布的版本号
    # 为当前状态打版本号 并查看
    git tag v1.0.0
    git tag
    
    # 修改 index.html 文件 并提交到本地库
    nano index.html
    git add .
    git commit -m "fixed bug1"
    # 再次打上版本
    git tag v1.0.1
    git tag
    
    # 修改 index.html 文件 并提交到本地库
    nano index.html
    git add .
    git commit -m "fixed bug2"
    # 再次打上版本
    git tag v1.0.2
    git tag
    
    #新功能的增加
    nano index.html
    git add .
    git commit -m "addend feature"
    # 再次打上版本
    git tag v1.1.0
    git tag
    # 查看版本
    git show v1.0.1
    

    相关文章

      网友评论

        本文标题:Git 17使用Tag标签 系统版本号管理

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