Mac OS以及Windows命令行开启代理
1.说明
此命令行开启代理只针对当前命令行,关闭即时效,再次开启需重新设置,如需永久设置,请使用命令行代理软件。如proxy_go等。
2.前提条件
需要在本地开启代理服务器
可使用vmess,trojan等。
3.设置
Mac:
export http_proxy=127.0.0.1:1234
export https_proxy=127.0.0.1:1234
Windows:
set http_proxy=127.0.0.1:1234
set https_proxy=127.0.0.1:1234
4.git 设置代理
本地项目设置
git config --local http.proxy 127.0.0.1:7890
全局git设置
git config --global http.proxy 127.0.0.1:7890
127.0.0.1是代理服务器地址
1234是代理服务器端口
提示:clash开启的服务默认端口为7890
4.验证
可使用/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"命令安装homebrew