方法一:重启代理

关闭代理

1
2
git config --global --unset http.proxy  
git config --global --unset https.proxy

添加全局代理

1
2
git config --global http.proxy  
git config --global https.proxy

方法二:修改host

在终端或CMD中找到GIthub.com的ip地址,

1
2
3
4
5
nanbowan@NanbowandeMacBook-Pro Desktop % ping github.com
PING github.com (140.82.113.3): 56 data bytes
64 bytes from 140.82.113.3: icmp_seq=0 ttl=49 time=226.679 ms
64 bytes from 140.82.113.3: icmp_seq=1 ttl=49 time=222.074 ms
64 bytes from 140.82.113.3: icmp_seq=2 ttl=49 time=218.888 ms

将获取到的ip地址和域名填写到host里

1
140.82.113.3 github.com