text 创建,推送删除git标签

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了text 创建,推送删除git标签相关的知识,希望对你有一定的参考价值。

git tag -am "annotation goes here" tagname_goes_here # cut a tag
git tag -d tagname_goes_here                         # burn it
git tag -am "annotation goes here" tagname_goes_here # cut another tag
git push --tags                                      # push tags to remote
git push origin :refs/tags/tagname_goes_here         # delete tag from remote

以上是关于text 创建,推送删除git标签的主要内容,如果未能解决你的问题,请参考以下文章