代理配置 Posted on 2021-10-14 Git 代理配置12345678# 配置代理# 1080为端口号,注意查看自己vpn的端口git config --global http.proxy socks5://127.0.0.1:1080git config --global https.proxy socks5://127.0.0.1:1080# 取消配置git config --global --unset http.proxygit config --global --unset https.proxy conda 代理配置1234567# 配置代理conda config --set proxy_servers.http http://127.0.0.1:portconda config --set proxy_servers.https https://127.0.0.1:port# 取消代理conda config --remove-key proxy_servers.httpconda config --remove-key proxy_servers.https