Git

1、有代理

只需要针对github设置代理即可,这里以ss为例子:

  1. #只对github.com
  2. git config --global http.https://github.com.proxy socks5://127.0.0.1:1080
  3. #取消代理
  4. git config --global --unset http.https://github.com.proxy#只对github.com
  5. git config --global http.https://github.com.proxy socks5://127.0.0.1:1080
  6. #取消代理
  7. git config --global --unset http.https://github.com.proxy

2、没代理

2.1 换URL

可以使用github的镜像网站:

  1. github.com.cnpmjs.org

github.com替换为上述URL即可,然后去clone,速度飞快!

2.2 配置Hosts

在ipaddress中查找github.com与github.global.ssl.fastly.net对应的ip,配置到hosts即可。

  1. https://www.ipaddress.com/
  1. xxxx github.global.ssl.fastly.net
  2. xxxx github.com

例如:Ubuntu上在/etc/hosts中添加:

  1. 151.101.72.249 github.http://global.ssl.fastly.net
  2. 140.82.113.4 github.com