有时分支不再需要的时候,可以通过如下指令删除远程分支:

git push origin --delete <branchName>

删除tag这么用:

git push origin --delete tag <tagname>

方法来自:[……]

阅读全文