赞
踩
从git上拉取百度富文本工具出现如下问题
- F:\ueditor>git clone https://github.com/fex-team/ueditor.git
- Cloning into 'ueditor'...
- remote: Enumerating objects: 26523, done.
- efrror: RPC failed; curl 56 OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054
- atal: The remote end hung up unexpectedly
- fatal: early EOF
- fatal: index-pack failed
根据关键信息error: RPC failed; curl 56 OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054这一行为关键字进行搜索,得到如下解决办法:
1.取消SSL验证
git config --global http.sslVerify "false"
2.修改下载缓存
使用git config --list 可以查看git配置文件中的内容
使用git config --global http.postbuffer 1073741824修改config中的缓存容量
其中修改单位为KB:1024KB*1024 = 1048576 MB * 1024 = 1073741824
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。