一、命令提示符设置代理(对应Windows平台)
1.设置代理
set http_proxy=127.0.0.1:8118
set https_proxy=127.0.0.1:8118
如果有用户名和密码,还需要执行以下代码
set http_proxy_user=name
set http_proxy_pass=password
2.取消代理
set http_proxy=
set https_proxy=
二、终端设置代理(对应MacOS平台)
1.设置代理
//brew的写法
echo export ALL_PROXY=socks5://127.0.0.1:1086 >> ~/.bash_profile
//zsh的写法
echo export ALL_PROXY=socks5://127.0.0.1:1086 >> ~/.zshrc
2.取消代理
应该是到用户文件夹下找".bash_profile"和".zshrc"删除对应的命令即可
三、Gradle设置代理
在IDE中设置好代理即可(还可以在用户文件夹下找到“.gradle”文件夹,打开里面的配置文件进行管理)
四、Git设置代理
1.设置代理
git config --global http.proxy 'http://127.0.0.1:1087'
git config --global https.proxy 'http://127.0.0.1:1087'
2.取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
网友评论