0%

GITHUB提高访问速度

GITHUB虽然未被墙,但是速度真的不敢恭维

从上面clone代码经常性的失败, 有点抓狂

WEB访问

  1. http://tool.chinaz.com/dns查询http://github.com

  2. 找到TTL值最低的响应IP 192.30.253.113

  3. 192.30.253.113 github.com添加到HOSTS(C:\Windows\System32\drivers\etc\hosts)中

CLONE

  1. 自行查找梯子

  2. 配置

    1. 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
    2. SHELL
      1
      2
      3
      ## 在命令行中使用代理
      ## export http_proxy=http://proxyuser:proxypwd@proxy.server.com:8080
      ## export https_proxy=https://proxyuser:proxypwd@proxy.server.com:8080
    3. WINDOWS
      添加http_proxyhttps_proxy环境变量

参考文档

  1. http://www.cnblogs.com/fengnovo/p/5959880.html
  2. http://www.tuicool.com/articles/a2m6fau