"rpc failed; curl 18 transfer closed with outstanding read data remaining" 是一个常见的 Git 错误,通常发生在执行 git clone 或git fetch 等操作时。以下是对这一错误的详细解释、可能的原因、解决步骤以及一些建议。 1. 错误消息解释 该错误消息表示在 Git 操作过程中,通过 HTTP(或 HTTPS)协议与远程仓库进...
1. 开始没有设置 CURLOPT_TIMEOUT 和 CURLOPT_CONNECTTIMEOUT,然后设置为: curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 30); curl_setopt($ch, CURLOPT_TIMEOUT, 30); 然而还是出现 transfer closed with ocsding read data remaining 这个问题 2. 通过 stack overflow 搜索找到一个方法,回答是这样的:缺少 ...
背景:公司新项目用的laravel框架,初期无专门的运维,用guzzle封装的get/post的对外请求方法,请求某个接口的时候,每页条数per_page超过一定数就会报错 GuzzleHttp\Exception\RequestException: cURL error 18: transfer closed with outstanding read data remaining (see http://curl.haxx.se/libcurl/c/libcurl-errors.h...
一,加大缓存区 git config --global http.postBuffer 524288000 这个大约是500M 二、少clone一些,–depth 1 git clone https://github.com/flutter/flutter.git --depth 1 –depth 1的含义是复制深度为1,就是每个文件只取最近一次提交,不是整个历史版本。 三、换协议 clone http方式换成SSH的方式,即 https:/...
I did this I'm using curl to call http/3 server provided by jetty. I'm getting error like curl: (18) transfer closed with 8 bytes remaining to read: curl3 --http3 -vv -k https://localhost:5443/ * Trying 127.0.0.1:5443... * Connect socket...
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 这个错误是因为项目太久,tag资源文件太大 解决方式一, 网上大部分解决措施:命令终端输入: ...
max-age=0, must-revalidate < Pragma: no-cache < Expires: 0 < X-Frame-Options: DENY < Content-Type: application/json < Transfer-Encoding: chunked < Date: Thu, 29 Jun 2023 05:59:30 GMT < { [7862 bytes data] * transfer closed with outstanding read data remaining * Closing connection ...
but from what I have been doing has been consistent. When I get to about 4.1Gb downloaded the dropbox server disconnects and I get the following message "curl: (18) transfer closed with outstanding read data remaining". I have tried a firefox, chrome and IE to see if I...
今天pod install 项目有一个第三方库一直超时,终端显示错误信息为:curl 18 transfer closed with outstanding read data remaining,网上说是缓存区溢出,于是修改.gifconfig文件的 http.postBuffer 在终端执行并查看: git config--globalhttp.postBuffer5242880git config--list ...
git clone时报RPC failed; curl 18 transfer closed with outstanding read data remaining 错误 原因1:缓存区溢出 解决方法:命令行输入 git config --global http.postBuffer 524288000 1. 执行上面命令如果依旧clone失败,考虑可能原因2:网络下载速度缓慢