junxnone / xwiki

https://junxnone.github.io/xwiki/
0 stars 0 forks source link

Tools Git tag #116

Open junxnone opened 5 years ago

junxnone commented 5 years ago

UseCase

Usecase cmd
查看所有tag git tag
查看匹配某些类型的标签 git tag -l 'v1.4.2.*'
创建一个含附注类型的标签 git tag -a v1.4 -m 'my version 1.4'
给某一个commit 打 tag git tag -a v1.2 9fceb02
push 特定tag git push origin v1.5
一次push所有本地新增的标签 git push origin --tags
删除本地tag git tag -d v1.1

默认情况下,git push 并不会把标签传送到远端服务器上,只有通过显式命令才能分享标签到远端仓库。

junxnone commented 5 years ago

junxnone/linuxwiki#62