解决mac系统git push/git clone代码速度太慢问题
关于mac系统
一、解决git push/git clone代码速度太慢:
1.使用管理员权限打开hosts文件
sudo vim /etc/hosts
2.在该文件末尾空一行填入
修改之后速度由10k20k左右增到500k-1000k左右
二、检出大项目报错,curl的postBuffer默认值太小:
error: RPC failed; curl 18 transfer closed with outstanding read data remaining
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
如果项目比较复杂庞大,检出会出现这个错误,就是因为curl的postBuffer默认值太小的原因,重新在终端配置一下这个值就可以:
git config --global http.postBuffer 524288000 (这个值是kb 500M,根据具体项目大小修改)
然后检查一下是否配置成功:
git config --list
本文来自互联网用户投稿,文章观点仅代表作者本人,不代表本站立场,不承担相关法律责任。如若转载,请注明出处。 如若内容造成侵权/违法违规/事实不符,请点击【内容举报】进行投诉反馈!
