$ export http_proxy=socks5://127.0.0.1:49719 # 配置http访问
$ export https_proxy=socks5://127.0.0.1:49719 # 配置https
$ export all_proxy=socks5://127.0.0.1:49719 # 配置http和https
1.临时代理
在终端中输入
export http_proxy="http://127.0.0.1:1087"
export https_proxy="http://127.0.0.1:1087"
或者直接
export all_proxy="http://127.0.0.1:52891"// 这是直接设置了http/https省得麻烦,当然你要是有分开设置的需求就分开设置
这是代理本身走的https/http
或者
export http_proxy="socks5://127.0.0.1:1086"
export https_proxy="socks5://127.0.0.1:1086"
或者
export all_proxy="socks5://127.0.0.1:1086" // 这是直接设置了http/https省得麻烦,当然你要是有分开设置的需求就分开设置
这是代理本身走的socks5
2.永久写入
如果使用的是zsh就在.zshrc中写入
export http_proxy="http://127.0.0.1:1087"
export https_proxy="http://127.0.0.1:1087"
或者
export http_proxy="socks5://127.0.0.1:1086"
export https_proxy="socks5://127.0.0.1:1086"
或者
export all_proxy="socks5://127.0.0.1:1086"
或者
export all_proxy="http://127.0.0.1:1087"
3.取消代理
unset http_proxy // 取消http代理
unset https_proxy // 取消https代理
或者直接全部取消
unset ALL_PROXY
遇到Git配置问题
a.git 移除全局配置代理
git config --global --unset http.proxy
git config --global --unset https.proxy
b.查看信息git配置信息
git config --global -l
c.设置代理
git config --global http.proxy 'socks5://127.0.0.1:1080'
git config --global https.proxy 'socks5://127.0.0.1:1080'
终端判断是否走了代理:文章来源:https://www.toymoban.com/news/detail-512413.html
运行命令文章来源地址https://www.toymoban.com/news/detail-512413.html
curl cip.cc
到了这里,关于Mac终端配置代理的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!