git tag查看、创建、推送、 删除

git tag查看
[root@node1 ~]# git tag
v1.0.0
v1.0.1
v1.0.2
git tag创建,并在某个commit 上打tag
[root@node1 ~]# git tag v1.0.3 707c0581061141d068114c3d050c2ee9ee0aa001
[root@node1 ~]# git tag
v1.0.0
v1.0.1
v1.0.2
v1.0.3
git tag推送
1.本地所有tag推送到线上
[root@node1 ~]# git tag --tags
2.本地指定tag推送到线上
[root@node1 ~]# git push origin v1.0.0
git tag 删除
1.删除本地tag
[root@node1 ~]# git push origin v1.0.0
2.删除本地tag后,再执行该句,删除线上tag
[root@node1 ~]# git push origin :refs/tags/v.1.0.0

您可以选择一种方式赞助本站

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: