赞
踩
在使用Git 同步或上传代码时,若容量过大,会报如下错误:
error: RPC failed; HTTP 404 curl 22 The requested URL returned error: 404 Not Found
解决方法有很多,参见:
https://dzone.com/articles/how-to-handle-big-repositories-with-git
也可以用如下方法处理:
git config --global http.postBuffer 500M //这个值可以根据情况做调整
git config --global http.maxRequestBuffer 100M //这个值可以根据情况做调整
git config --global core.compression 0
将同步代码方式由http换成ssh也是可行的
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。