网络代理
1、访问github
安装 Proxy SwitchyOmega
1、需要访问谷歌商店
首先要去电脑网络上设置代理
谷歌商店:https://chromewebstore.google.com/
搜索:Proxy SwitchyOmega
2、mac 终端走代理
方法一:临时处理 不影响环境
直接打开终端,在终端运行 一下 命令 :export http_proxy=http://proxyAddress:port
如果是https那么就经过如下命令:
exporthttps_proxy=http://proxyAddress:port
这个办法的好处是把代理服务器永久保存了,下次就可以直接用了
方法二:永久处理
把代理服务器地址写入shell配置文件.bashrc或者.zshrc 直接在.bashrc或者.zshrc添加下面内容export http_proxy="http://localhost:port"
export https_proxy="http://localhost:port"
或者走socket5协议(ss,ssr)的话,代理端口是1080export http_proxy="socks5://10.12.1.16:3128"
export https_proxy="socks5://10.12.1.16:3128"
或者干脆直接设置ALL_PROXYexport ALL_PROXY=socks5://10.12.1.16:3128
最后在执行如下命令应用设置
source ~/.bashrc或者通过设置alias简写来简化操作,每次要用的时候输入setproxy,不用了就unsetproxy。
添加环境变量
打开终端,执行 vi ~/.bash_profile
添加
alias proxy='export http_proxy=http://10.12.1.16:3128;export https_proxy=http://10.12.1.16:3128;'
alias unproxy='unset all_proxy'
保存,再执行以下命令,使配置生效
source ~/.bash_profile
source ~/.bash_profile只生效一次的解决方案
在~/.zshrc文件最后,增加一行:
source ~/.bash_profile三、验证
#开启代理
proxy
#关闭代理
unproxy方法三:
改相应工具的配置,比如apt的配置sudo vim /etc/apt/apt.conf
在文件末尾加入下面这行Acquire::http::Proxy "http://proxyAddress:port"
重点来了!!如果说经常使用git对于其他方面都不是经常使用,可以直接配置git的命令。
使用ss/ssr来加快git的速度
直接输入这个命令就好了git config --global http.proxy 'socks5://10.12.1.16:3128'
git config --global https.proxy '10.12.1.16:3128'