代理配置

Git 代理配置

1
2
3
4
5
6
7
8
# 配置代理
# 1080为端口号,注意查看自己vpn的端口
git config --global http.proxy socks5://127.0.0.1:1080
git config --global https.proxy socks5://127.0.0.1:1080

# 取消配置
git config --global --unset http.proxy
git config --global --unset https.proxy

conda 代理配置

1
2
3
4
5
6
7
# 配置代理
conda config --set proxy_servers.http http://127.0.0.1:port
conda config --set proxy_servers.https https://127.0.0.1:port

# 取消代理
conda config --remove-key proxy_servers.http
conda config --remove-key proxy_servers.https