蒙蒙plus
蒙蒙plus
发布于 2024-02-07 / 35 阅读
0
0

[git]error: RPC failed; curl 56 Failure

【git】error: RPC failed; curl 56 Failure when receiving data from the peer

 git clone https://gitea.mengplus.top/third_party/lvgl.git
Cloning into 'lvgl'...
remote: Enumerating objects: 98318, done.
remote: Counting objects: 100% (98318/98318), done.
remote: Compressing objects: 100% (23160/23160), done.
error: RPC failed; curl 56 Failure when receiving data from the peer
error: 6379 bytes of body are still expected
fetch-pack: unexpected disconnect while reading sideband packet
fatal: early EOF
fatal: fetch-pack: invalid index-pack output

我们拉仓库时经常出现这样的 提示,大概意思就是 已经全部拉下来了 但是校验检查的时候出错了,这种问题多发现于使用了 https,解决方案有两个

  1. fork仓库,采用ssh 拉取可以避免这个问题

  2. 多次尝试,让改缓存区或许在一定程度上有效,但是根据我的测试效果并不理想

这就是我能给出的解决方案,有更好的解决方案会第一时间更新


评论