美文网首页
git tag使用

git tag使用

作者: 明明就_c565 | 来源:发表于2020-05-15 10:36 被阅读0次

    查看标签

    git tag

    创建标签

    git tag 标签名字 -m '消息内容'

    git tag -a crm-1.0.2 -m "Version 1.0.2"

    给指定的commit打标签

    git tag -a v0.1.0 49e0cd22f6bd9510fe65084e023d9c4316b446a6

    推送标签 

    git push origin 标签名字

    推送所有标签 

    git push origin --tags

    删除标签

    git tag -d 标签名字

    删除远程仓库Tag

    git push origin :refs/tags/<tag名称>

    将远程仓库Tag同步到本地

    git fetch origin tag  <tag名称>

    相关文章

      网友评论

          本文标题:git tag使用

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