git 提交被拒,错误原因,通过http方式clone到本地。提交的时候服务端不支持http,只支持ssh方式,所以出现下面错误。
$ git push origin ****-eq50
XML error: undefined entity
error: no DAV locking support on http********android/
fatal: git-http-push Failed
error: Failed to push some refs to 'http******android/'
错误截图
解决方法:
查看push url方法
$ git remote show origin
* remote origin
Fetch URL: http******android/
Push URL: http******android/
HEAD branch: master
修改远程地址,重新设置remote地址即可
git remote set-url origin git@******android
原文链接:https://www.f2er.com/xml/294086.html