
set http_proxy=http://127.0.0.1:1080 set https_proxy=https://127.0.0.1:1080 不生效。。会是什么原因。。
带回家里了,家里有软路由,谢谢各位…
1 MakeItGreat Jun 29, 2021 via Android Power shell $env:http_proxy="http://127.0.0.1:8966" $env:https_proxy="http://127.0.0.1:8966" Git git config --global http.proxy 'socks5://127.0.0.1:8960' git config --global https.proxy 'socks5://127.0.0.1:8960' 具体我也不太懂,需要大佬解释 |
2 neteroster Jun 29, 2021 不是所有程序都按环境变量来走代理的,比如 git 按你这个就不行。#1 已经说了 git 怎么设置代理。 |
3 iscraft Jun 29, 2021 proxifier |
4 OmO Jun 29, 2021 wsl2 我这样搞过,始终无法走代理。。。 |
5 codehz Jun 29, 2021 用 tun/tap 吧,彻底解决问题.jpg |
6 devtk Jun 29, 2021 直接用软路由吧,省心 |
7 PUBG98k Jun 29, 2021 kkcap |
8 PUBG98k Jun 29, 2021 |
9 AoEiuV020 Jun 29, 2021 |
11 JohnShen927 Jun 29, 2021 之前折腾过很多方法。 最终发现的完美方案还是路由器刷 openwrt |
13 ysc3839 Jun 29, 2021 via Android https_proxy 指的是请求的目标是 https 协议使用的代理。如果你的代理不支持 https,这里又写了 https 的话,会导致所有 https 请求都发不出去。 |
14 ysc3839 Jun 29, 2021 via Android @MakeItGreat git 是用 libcurl 发送 http 请求的,而 socks5 代理协议在 libcurl 中含义是使用本地 DNS 解析域名,再通过代理访问,这可能会导致一些问题。建议使用 socks5h 。 |
15 Wanerlove Jun 29, 2021 CMD ``` set http_proxy=http://127.0.0.1:22335 & set https_proxy=http://127.0.0.1:22335 ``` Power Shell ``` $Env:http_proxy="http://127.0.0.1:22335";$Env:https_proxy="http://127.0.0.1:22335" ``` Git ``` git config --global https.proxy http://127.0.0.1:22335 git config --global https.proxy https://127.0.0.1:22335 ``` |
16 lostberryzz Jun 29, 2021 ssh 协议的话要在.ssh/config 里设置代理,https 协议的话 export 下环境变量就 ok 了 |
18 interim Jun 29, 2021 @OmO wsl2 你需要拿到宿主机的 IP,我使用正常。 或者你可以通过 clash 的 TUN 模式,所有的流量都会走代理,包括 WSL2 的,也就不用单独配置了。 |
19 gooin Jun 30, 2021 # HTTP: 只对 github 进行代理,对国内的仓库不影响,可以这样设置 git config --global http.https://github.com.proxy http://127.0.0.1:1912 git config --global https.https://github.com.proxy https://127.0.0.1:1912 取消代理 git config --global --unset http.https://github.com.proxy # SSH: mac 上对 ssh 方式的 gitclone 配置 Host github.com HostName github.com PreferredAuthentications publickey IdentityFile ~/.ssh/id_rsa User git ProxyCommand nc -v -x 127.0.0.1:7890 %h %p |
20 jswh Jun 30, 2021 我用 Netch |
21 KickAssTonight Jun 30, 2021 export http_proxy=http://127.0.0.1:1080 export https_proxy=http://127.0.0.1:1080 git config --global http.proxy 'http://127.0.0.1:1080' git config --global https.proxy 'http://127.0.0.1:1080' |
22 kerr92 Jun 30, 2021 正好整理过一份花式代理设置方式 https://keqingrong.cn/blog/2021-02-19-proxy-and-pac |
23 HankAviator Jul 1, 2021 via Android @OmO wsl2 没问题啊,是不是调用的 git 不对?如果 wsl2 里面装的,要填 nat 的地址的。 |