你的位置:首页 > 信息动态 > 新闻中心
信息动态
联系我们

Git推送本地tag到远程仓库

2021/11/27 9:36:01

推送某个单独的Tag到远端:

git push <remote> <tag>

示例:

git tag V1.00.01
git push origin V1.00.01

将本地的V1.00.01的Tag推送到远端


推送所有Tag到远端:

git push <remote> --tags

示例:

git push origin --tags