GIT使用笔记

帅比萌擦擦* 提交于 2020-03-25 15:31:00

1、git提交错误

在用git 向github提交代码时出现:

error: RPC failed; result=22, HTTP code = 411
fatal: The remote end hung up unexpectedly

可能是push的文件大小超过了http post默认的大小,因此我们只需执行如下代码就可以

#git config http.postBuffer 524288000
#第一句可能找不到变量,用第二句
git config --global http.postBuffer 52428800

 

参考:

[1] http://stackoverflow.com/questions/12651749/git-push-fails-rpc-failed-result-22-http-code-411

[2] http://stackoverflow.com/questions/16557071/git-error-rpc-failed-result-22-http-code-411

[3] http://www.haogongju.net/art/520578

[4] http://www.drovik.com/html/9206342025.html

[5] http://blog.csdn.net/passion_wu128/article/details/8234901

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!