未分类
vscode配置代理
配置代理,让vscode和git飞起来 对于 git, 只需要用下面的明亮就可以了
1 2 3 4 |
git config --global https.proxy http://127.0.0.1:1080 git config --global https.proxy https://127.0.0.1:1080 git config --global http.proxy 'socks5://127.0.0.1:1080' git config --global https.proxy 'socks5://127.0.0.1:1080' |
如果想要取消:
1 2 |
git config --global --unset http.proxy git config --global --unset https.proxy |
但是如果是vscode,同样也是通过首选项->设置->搜索proxy,然后可以输入上面的proxy。速度就飞了。。 或者可以这样:
1 |
export https_proxy=http://127.0.0.1:4780 http_proxy=http://127.0.0.1:4780 all_proxy=socks5://127.0.0.1:4780 |
当然,自备梯子