unable to access ‘https://github.com/twbs/bootstrap-npm-starter.git/‘: Failed to connect to github.

钱星辰
2023-12-01

好久没用git 今天拉取文件时候不能git clone成功,百度找到了方法,亲测有效。

  1. unable to access 'https://github.com/twbs/bootstrap-npm-starter.git/': Failed to connect to github.com port 443: Timed out
    解决方法
    http和https代理问题。只是变量名称从https更改为http
git config --global -l
env|grep -i proxy

2.unable to access 'https://github.com/twbs/bootstrap-npm-starter.git/': OpenSSL SSL_read: SSL_ERROR_SYSCALL, errno 10054
服务器不能识别git的SSL证书,所以操作停止执行

 git config --global http.sslVerify false
 类似资料: