推送某个单独的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
推送某个单独的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