当前位置:   article > 正文

Git把Tag推送到远程仓库_git push tag

git push tag

一、列出标签

$ git tag # 在控制台打印出当前仓库的所有标签

二、搜索标签

$ git tag -l ‘v0.1.*’ # 搜索符合模式的标签

三、推送标签到远程仓库

git push并不会把tag标签传送到远端服务器上,只有通过显式命令才能分享标签到远端仓库。
1.push
单个tag,命令格式为:git push origin [tagname]
例如:
git push origin v1.0 #将本地v1.0tag推送到远端服务器
2.push
所有tag,命令格式为:git push [origin] --tags
例如:
git push --tags

git push origin --tags

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小桥流水78/article/detail/914136
推荐阅读
  

闽ICP备14008679号