macbook终端走代理(brew和git)

mac下brew和git速度很慢,走代理最容易,避免很多不必要的操作。

socks代理

brew 和git走socks代理

1. 一次设置,设置zshrc或者bashrc

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

然后开启一个新的终端窗口,运行brew命令即可。

2.每次新的终端都设置一次

export ALL_PROXY=socks5://127.0.0.1:1086

http代理

git 走http代理

如果SOCKS代理存在问题,请您尝试HTTP代理:

git config --global http.proxy 'http://127.0.0.1:1087'
git config --global https.proxy 'http://127.0.0.1:1087'

经过测试,
mac下设置export,brew走socks代理,git走http代理。

ubuntu下git config …,再git clone http。

你可能感兴趣的:(macbook)