默认情况下,git push并不会把tag标签传送到远端服务器上,只有通过显式命令才能分享标签到远端仓库。
-
push单个tag,命令格式为:
git push origin [tagname]
例如:git push origin v1.0 #将本地v1.0的tag推送到远端服务器
-
push所有tag,命令格式为:
git push [origin] --tags
例如:
git push --tags
或
git push origin --tags
注:上述命令运行后,如果其他人clone远端服务器代码或进行pull同步后,也会看到这些标签。