git clone 提示:OpenSSL SSL_read: Connection was reset, errno 10054
使用Git 获取XXL-job项目提示:OpenSSL SSL_read: Connection was reset, errno 10054.
·
使用Git 获取XXL-job项目提示:OpenSSL SSL_read: Connection was reset, errno 10054.
解决办法:解除ssl验证,执行如下指令
git config --global http.sslVerify "false"
Git Bash 客户端指令:
zzg@LAPTOP-8R0KHL88 MINGW64 /e/idea_workspace (master)
$ git clone https://github.com/xuxueli/xxl-job
Cloning into 'xxl-job'...
fatal: unable to access 'https://github.com/xuxueli/xxl-job/': OpenSSL SSL_read: Connection was reset, errno 10054
zzg@LAPTOP-8R0KHL88 MINGW64 /e/idea_workspace (master)
$ git config --global http.sslVerify "false"
zzg@LAPTOP-8R0KHL88 MINGW64 /e/idea_workspace (master)
$ git clone https://github.com/xuxueli/xxl-job
Cloning into 'xxl-job'...
remote: Enumerating objects: 24950, done.
remote: Counting objects: 100% (148/148), done.
remote: Compressing objects: 100% (88/88), done.
......
更多推荐
所有评论(0)