- 查看本地有哪些 tags
shell
# git tag -l
v0.0.3
v0.0.5
v0.0.6
- 查看远程有哪些 tags
shell
# git ls-remote --tags
From https://github.com/eyjian/gomooon.git
1fe7f5ecf369cba34f4328285ce1ec72d62c091e refs/tags/v0.0.3
9371db55046109d7fc9a9f75625d5ec31c326ad1 refs/tags/v0.0.5
bw1vb29umqswcqydvqqldajzatenmasga1ueawwe refs/tags/v0.0.6
命令格式:
shell
git ls-remote --tags <remote_name>
将 <remote_name> 替换为远程仓库的名称,通常为 origin 。
- 删除本地的 tag
shell
git tag -d v0.0.6
命令格式:
shell
git tag -d <tag_name>
- 删除远程的 tag
shell
git push origin :refs/tags/v0.0.6
命令格式:
shell
git push <remote_name> :refs/tags/<tag_name>
将 <remote_name> 替换为远程仓库的名称,通常为 origin 。