1、git提交错误
在用git 向github提交代码时出现:
error: RPC failed; result=22, HTTP code = 411fatal: The remote end hung up unexpectedly
可能是push的文件大小超过了http post默认的大小,因此我们只需执行如下代码就可以
#git config http.postBuffer 524288000#第一句可能找不到变量,用第二句git config --global http.postBuffer 52428800
参考:
[1]
[2]
[3]
[4]
[5] http://blog.csdn.net/passion_wu128/article/details/8234901