欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

windows cmd/linux terminal/git bash设置代理

程序员文章站 2024-02-23 15:06:16
...

1. windows cmd代理设置

原文链接:Win/Linux 命令行、终端和 Git 代理设置

HTTP 代理设置:

set http_proxy=http://127.0.0.1:8118
set https_proxy=http://127.0.0.1:8118

SOCKS5 代理设置:

set http_proxy=socks5://127.0.0.1:1080
set https_proxy=socks5://127.0.0.1:1080

可以通过 echo %http_proxy% 命令查看是否设置成功。

取消代理设置:

set http_proxy=
set https_proxy=

2. linux terminal代理设置

2.1 临时代理设置

Linux 终端设置 HTTP 代理(只对当前终端有效):

$ export http_proxy=http://127.0.0.1:8118
$ export https_proxy=http://127.0.0.1:8118

Linux 中设置 SOCKS5 代理(只对当前终端有效):

$ export http_proxy=socks5://127.0.0.1:1080
$ export https_proxy=socks5://127.0.0.1:1080

设置终端中的 wget、curl 等都走 SOCKS5 代理(只对当前终端有效):

$ export ALL_PROXY=socks5://127.0.0.1:1080

Linux 终端中取消代理设置:

$ unset http_proxy
$ unset https_proxy
$ unset ALL_RPOXY
2.2 永久代理设置

将代理命令写入配置文件 ~/.profile 或 ~/.bashrc 或 ~/.zshrc 中:

3. git bash代理设置

设置 HTTP 代理:

git config --global http.proxy http://127.0.0.1:8118
git config --global https.proxy http://127.0.0.1:8118

设置 SOCKS5 代理:

git config --global http.proxy socks5://127.0.0.1:1080
git config --global https.proxy socks5://127.0.0.1:1080

Git 取消代理设置:

git config --global --unset http.proxy
git config --global --unset https.proxy