ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
``` [root@iz8vb7cc5e91mtyvtcbrpaz aaa]# git pull origin master Username for 'https://gitee.com': abc@qq.com Password for 'https://abc@qq.com@gitee.com': remote: Counting objects: 67788, done. remote: Compressing objects: 100% (8012/8012), done. error: RPC failed; result=18, HTTP code = 200 fatal: The remote end hung up unexpectedly fatal: early EOF fatal: index-pack failed ``` # 网上说的解决方法一 ``` git config --global http.postBuffer 24288000 git config --list ``` 按照这种说法,还没有解决问题! 结果:无效 原因:这是第三方码云的配置,我们没办法解决! # 解决方法二:gitlab 修改 `git/config/unicorn.yml` 中设置 `timeout` 到 `240`, 默认是 `30`, 修改保存后 重启 `gitab` : `service gitlab restart` 结果:无效 原因:这是`gitlab`的配置,也无效! # 解决方法三