fatal: unable to access ‘https://github.com/xx.git/‘: OpenSSL SSL_read: Connection was reset, errno
使用git clone 克隆GitHub的仓库时,报错:
git clone https://github.com/jin5437/vue2-management-system.git
报错信息如下:
fatal: unable to access 'https://github.com/jin5437/vue2-management-system.git/': OpenSSL SSL_read: Connection was reset, errno 10054
解决办法:
将命令的https,替换为git,即:
git clone git://github.com/jin5437/vue2-management-system.git
顺利解决问题!