一 代理
HTTP
git config --global http.proxy http://127.0.0.1:1080
git config --global https.proxy http://127.0.0.1:1080
Socket5
git config --global http.proxy 'socks5://127.0.0.1:1080'
git config --global https.proxy 'socks5://127.0.0.1:1080'
取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
二 修改hosts
# 1.打开hosts
sudo vim /private/etc/hosts
# 2. 打开站长工具http://tool.chinaz.com,查找下面两个地址对应的最小值TTl ip
13.229.188.59 github.com
151.101.229.194 github.global.ssl.fastly.Net
# 3. 保存(shift + : 输入wq 回车)
# 4. 输入下面命令使hosts生效
sudo killall -HUP mDNSResponder