当前位置:   article > 正文

Git 处理大容量仓库

Git 处理大容量仓库

Git 处理大容量仓库

在使用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
  • 1
  • 2
  • 3

将同步代码方式由http换成ssh也是可行的

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/码创造者/article/detail/821349
推荐阅读
相关标签
  

闽ICP备14008679号