1. 程式人生 > 實用技巧 >win10終端設定代理

win10終端設定代理

如果代理方式是127.0.0.1:1080;這個意思就是通過本地的1080埠來與服務端通訊, 將埠改為梯子的埠,流量就可以混淆加密,也就是"讓終端fq"

舉例: 比如v2**y客戶端clash使用的埠是7890
cmd :

set http_proxy=http://127.0.0.1:7890 & set https_proxy=http://127.0.0.1:7890

powershell :

$Env:http_proxy="http://127.0.0.1:7890";$Env:https_proxy="http://127.0.0.1:7890"

git :

export http_proxy=http://127.0.0.1:7890;export https_proxy=http://127.0.0.1:7890

一般重啟終端又需要重新輸入, 想用的方便可以加別名(alias)或者新增到配置檔案中.

git clome遇到錯誤 Failed to connect to 127.0.0.1 port 1080: Connection refused

很多關於git設定代理的部落格都會直接說export http_proxy="socks5://127.0.0.1:1080"(因為ss的代理埠預設為1080,但是不解釋清楚,我又不用ss,一直出問題讓我暈了好一陣子)但是這樣可能會clone時會因端口占用出現 :Failed to connect to 127.0.0.1 port 1080: Connection refused

解決方法 :

查詢是否使用代理:

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

取消代理:

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