git clone
下载项目,看着10kb/s的下载速度干着急。
# hosts
199.232.69.194 github.global.ssl.fastly.net
去ip查询网址查询github.global.ssl.fastly.net和github.com对应的ip,然后配置hosts
github.com
为pac白名单;或者开全局下载##查看全局配置
git config --global --list
## 取消github的代理
git config --global --unset https.https://github.com.proxy
## 添加代理
git config --global https.https://github.com.proxy socks5://127.0.0.1:1088
## 全局代理
git config --global http.proxy 'socks5://127.0.0.1:1088'
git config --global https.proxy 'socks5://127.0.0.1:1088'
## 取消全局代理
git config --global --unset http.proxy
git config --global --unset https.proxy
通过配置全局代理,可让clone时https方式,走纸飞机
git config --global http.proxy 'socks5://127.0.0.1:1088'
git config --global https.proxy 'socks5://127.0.0.1:1088'