GITHUB虽然未被墙,但是速度真的不敢恭维
从上面clone代码经常性的失败, 有点抓狂
WEB访问
在
http://tool.chinaz.com/dns
查询http://github.com
找到
TTL
值最低的响应IP192.30.253.113
将
192.30.253.113 github.com
添加到HOSTS
(C:\Windows\System32\drivers\etc\hosts
)中
CLONE
自行查找梯子
配置
- GIT
1
2
3
4# git config --global http.proxy http://proxyuser:proxypwd@proxy.server.com:port
# git config --global https.proxy https://proxyuser:proxypwd@proxy.server.com:port
git config --global http.proxy http://127.0.0.1:58365
git config --global https.proxy https://127.0.0.1:58365 - SHELL
1
2
3## 在命令行中使用代理
## export http_proxy=http://proxyuser:proxypwd@proxy.server.com:8080
## export https_proxy=https://proxyuser:proxypwd@proxy.server.com:8080 - WINDOWS
添加http_proxy
和https_proxy
环境变量
- GIT