Git提交代码报错Git push error:src refspec XXX matches more than one解决方案

Git提交代码push时,报错这个

error: src refspec master matches more than one.
error: failed to push some refs to 'xxx.git'

发现原因是因为git里有一个tag(标签)和当前提交分支重名了,git检测到多个重复名称,因而报错提示你。。。

解决办法:

1、云端重新命名tag,弄好后重新pull,再push,如果还不行,就用第二种

2、本地删除掉tag,再push就可以了

- 如果是SourceTree,直接找到tag,删掉即可,

- 如果是终端命令行执行:

Git提交代码报错Git push error:src refspec XXX matches more than one解决方案

不过最后记得让添加tag的人,重命名下tag。

最后总结:

打tag,记得不要和已有分支重名哦~~

-

上一篇:git连接不上远程仓库---visualstudio提交代码报错:no upstream configured for branch 'master'


下一篇:[Java Web]Struts2解决中文乱码问题