Failed to receive SOCKS4 connect request ack.

解决方法

1
2
git config --global http.proxy 'socks5://127.0.0.1:1080' 
git config --global https.proxy 'socks5://127.0.0.1:1080'

error: RPC failed; curl 18 transfer closed with outstanding read data remaining

解决方法

    1. –depth 1
1
2
3
4
5
6
7
8
9
10
11
12
# 关闭压缩
git config --global core.compression 0
# 部分克隆
git clone --depth 1 http://github.com/large-repository
cd large-repository
# 进入新目录并检索其余的克隆
git fetch --unshallow

# 或者
git fetch --depth=2147483647
# 做一个定期拉
git pull --all
1
git config --global http.postBuffer 524288000

参考


本站由 VITAN 使用 Stellar 主题创建。
本博客所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议,转载请注明出处。