无法访问 'https://github.com/GladysProject/gladys/':无法连接到 github.com 端口 443:没有到主机的路由
unable to access 'https://github.com/GladysProject/gladys/': Failed to connect to github.com port 443: no route to host
当我 运行 :
sudo git clone https://github.com/GladysProject/gladys gladys
出现错误:
fatal: unable to access 'https://github.com/GladysProject/gladys/': Failed to connect to github.com port 443: no route to host
我在 raspberry pi 3B 上使用 raspbian 的最新版本,我刚安装了 SAMBA 和 Transmission。
首先,检查你的连接设置和所有这些废话,确保你已经有了。
如果错误仍然存在,请关闭 SSL 验证
git config http.sslVerify false
但如果没有 repo,运行 这将更改全局设置
git config --global http.sslVerify false
重复 How do I set GIT_SSL_NO_VERIFY for specific repos only?
当我 运行 :
sudo git clone https://github.com/GladysProject/gladys gladys
出现错误:
fatal: unable to access 'https://github.com/GladysProject/gladys/': Failed to connect to github.com port 443: no route to host
我在 raspberry pi 3B 上使用 raspbian 的最新版本,我刚安装了 SAMBA 和 Transmission。
首先,检查你的连接设置和所有这些废话,确保你已经有了。
如果错误仍然存在,请关闭 SSL 验证
git config http.sslVerify false
但如果没有 repo,运行 这将更改全局设置
git config --global http.sslVerify false
重复 How do I set GIT_SSL_NO_VERIFY for specific repos only?