github加速也使用适用于pod install等

前提:需要有个ss代理

方法:

1. 查看本地ss监听端口,通产都是以下配置。

2. git全局设置 

Linux

git config --global http.proxy socks5://127.0.0.1:1086

git config --global http.https://github.com.proxy socks5://127.0.0.1:1086

Windows

git config --global http.proxy socks5://127.0.0.1:1080

git config --global http.https://github.com.proxy socks5://127.0.0.1:1080

3. 打开全局模式,搞定。实测速度在1-2M之间

4. 若是想取消配置,以下命令恢复

git config --global --unset http.proxy

git config --global --unset http.https://github.com.proxy

或者,也可以直接打开.gitconfig文件,删除掉正面的两行配置

你可能感兴趣的:(github加速也使用适用于pod install等)