Git删除远程Tag分支
Posted 徐昊Xiho
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Git删除远程Tag分支相关的知识,希望对你有一定的参考价值。
删除远程Tag
显示本地 tag
git tag
Remote_Systems_Operation
删除本地tag
git tag -d Remote_Systems_Operation
用push, 删除远程tag
git push origin :refs/tags/Remote_Systems_Operation
删除远程分支
git branch -r -d origin/branch-name
git push origin :branch-name
以上是关于Git删除远程Tag分支的主要内容,如果未能解决你的问题,请参考以下文章