Windows下git clone https://*** 失败解决方案

Windows下git clone https://*** 失败解决方案


注意:【三种方法同时使用一定能解决问题】

1. 第一种方法

  • 可以尝试把https:// 换成 git://

2. 第二种方法

  • 在host文件添加如下代码
192.30.253.113 github.com
192.30.252.131 github.com
185.31.16.185 github.global.ssl.fastly.net
74.125.237.1 dl-ssl.google.com
173.194.127.200 groups.google.com
192.30.252.131 github.com
185.31.16.185 github.global.ssl.fastly.net
74.125.128.95 ajax.googleapis.com

3. 第三种方法

  • 如果使用VPN代理的话请设置代理端口,比如蓝灯的50321,影梭的1080端口.

git config --global https.proxy “localhost:50321”
git config --global https.proxy “localhost:1080”

你可能感兴趣的:(git,windows)