Git同步Github速度较慢,可以使用梯子加速,修改用户文件夹下面的.gitconfig
[http] proxy = socks5://127.0.0.1:1080 sslVerify = false [https] proxy = socks5://127.0.0.1:1080
或者通过命令行输入
git config --global http.proxy socks5://127.0.0.1:1086 git config --global https.proxy socks5://127.0.0.1:1086 git config --global http.sslVerify false
取消的话
git config --global --unset http.proxy git config --global --unset https.proxy
查看原文:http://wordpress.haisong.work/?p=181
原文:https://www.cnblogs.com/haisong1991/p/12173502.html