添加和删除shell设置的变量

最近发现使用git时候报错

fatal: unable to access 'https:///.git/': Failed to connect to 127.0.0.1 port 1080: Connection refused

本地的这个1080估计是安装ss的时候设置的.查看 export, 可以看到

 declare -x ALL_PROXY="socks://127.0.0.1:1080/"
//在命令行输入这个名利,立马消除proxy设置 (2个都消除)
unset ALL_PROXY
unset all_proxy
//如果要重新设置
export ALL_PROXY=socks5://127.0.0.1:1080