最近 pod install 奇慢无比, 开了 VPN 也不管用, 并且 Git Clone 也是各种失败. 现有解决方案如下
个人使用 Shadowsocks 代理,默认代理端口为1086 (在 Shadowsocks 偏好设置里面看) ,配置好代理之后去终端输入 git 配置命令,命令如下
git config --global http.proxy socks5://127.0.0.1:1086
这是给 git 设置全局代理, 如果不希望公司私有库也走代理, 命令如下
git config --global http.https://github.com.proxy socks5://127.0.0.1:1086
PS:
如果要 恢复 / 移除以上设置好的 git 代理
git config --global --unset http.proxy
git config --global --unset http.https://github.com.proxy
网友评论