Git删除远程Tag、分支

来源:互联网 发布:出租屋网络方案 编辑:程序博客网 时间:2024/06/06 10:53

删除远程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-namegit push origin :branch-name
1 0