pod install时出现错误,如下:
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资源文件太大。
解决方法1
修改Git的传输字节限制
git config --global http.postBuffer 524288000
(等了很久正打算试第二种居然好了...)
解决方法2
将https地址换成ssh地址继续clone
方法地址:https://blog.csdn.net/m_review/article/details/79109491
网友评论