0
点赞
收藏
分享

微信扫一扫

How to Share Git Tag

无愠色 2022-09-06 阅读 163


Now I have two tags under my git repository. Let’s take a look at how to push the git tags to Server.



1
2

v2850
v4.1.1.2000_2852

Push a single tag to the server



1
2
3

#git push origin tag_name#Take v2850 for examplegit push  origin v2850

Push all tags to the server



1

git push  origin --tags

Others

  • Git Pocket Guide
  • How to Share Git Tag_git


举报

相关推荐

0 条评论