Git error: dst refspec xxx matches more than one.
问题描述
这是Git提交时,远端出现了 xxx 同名的branch 或者 tag。删除即可解决~
解决
删除分支
git push origin :heads/xxx
删除tag
git push origin :tags/xxx
问题描述
这是Git提交时,远端出现了 xxx 同名的branch 或者 tag。删除即可解决~
解决
删除分支
git push origin :heads/xxx
删除tag
git push origin :tags/xxx