sh 如何在本地和远程删除git标记

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了sh 如何在本地和远程删除git标记相关的知识,希望对你有一定的参考价值。

# delete local tag '12345'
git tag -d 12345
# delete remote tag '12345' (eg, GitHub version too)
git push origin :refs/tags/12345
# alternative approach
git push --delete origin tagName
git tag -d tagName

以上是关于sh 如何在本地和远程删除git标记的主要内容,如果未能解决你的问题,请参考以下文章

sh 如何在本地和远程删除git标记

sh 从git存储库中删除所有标记(本地和远程)

sh 删除本地和远程标记并推送指向HEAD的新标记

sh 删除本地和远程存储库上的所有标记(小心)

sh Bash / Git - 删除本地和远程分支以进行repo清理

sh Bash / Git - 删除本地和远程分支以进行repo清理