每次想从GitHub上下载时都需要重新从网上搜方法嫌麻烦于是自己写篇博客mark一下。 首先需要确认打开了ss代理之后win+R输入cmd回车,进入控制台界面,输入:

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

也可以如下方式停走代理

1
git config --global http.proxy "" git config --global https.proxy ""

http://blog.csdn.net/u013700358/article/details/62425360

https://www.cnblogs.com/weidiao/p/6376420.html