How to only push a specific tag to remote?
本问题已经有最佳答案,请猛点这里访问。
有像
您可以简单地使用:
1 | git push origin tag_a |
或者(主要是为了解决标记/分支名称冲突),您可以使用:
1 | git push origin refs/tags/tag_a |
号
正如帕维尔所指出的?伊梅尔达,你可以这么做
1 | git push <remote> <tag> |
我添加了远程
以下是相关文档的摘要,说明了如何推送特定标签:
1
2
3 git push [[<repository> [<refspec>…]]
<refspec>...The format of a
parameter is…the source ref , followed by
a colon: , followed by the destination ref… The
tells which ref on the remote side is updated with this push…If
: is omitted, the same ref aswill be updated… tag
means the same as refs/tags/ .:refs/tags/
号