美文网首页
git tag操作

git tag操作

作者: 背锅填坑交给我 | 来源:发表于2019-10-17 21:27 被阅读0次

    亲测

    ## 打tag
    git tag -a xxx-v1.0 -m 'version 1.0’
    
    ## tag推到远程仓库
    git push origin xxx-0.1    push指定tag 
    git push origin --tags   push所有tag
    
    ## 获取远程tag
    git fetch origin tag V1.2
    
    
    ## 删除远程tag
    1、先删除本地tag
    git tag -d ccb-streaming-plugin-v0.1.0.0
    2、再推送到远程tag
    git push origin :refs/tags/ccb-streaming-plugin-v0.1.0.0
    
    

    相关文章

      网友评论

          本文标题:git tag操作

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