当我向git更新文件是,报了下面一个错误:
fatal: unable to access 'https://github.com/doFighter/hangingDataStructure.git/': OpenSSL SSL_read:Connection was reset, errno 10054
之后我便通过百度查询到这样的解决办法:
git config --global http.sslVerify “false”
我复制粘贴使用之后却发现又报了这样一个错误:
fatal: bad numeric config value '“false”' for 'http.sslverify': invalid unit
经过我仔细排查发现,原来是该博主使用的双引号竟然是中文的,当我改写成英文的的之后便可以提交了。
正确语句如下:
git config --global http.sslVerify "false"