git 代理设置

问题描述:
使用git clone 项目时报错

Failed to connect to 127.0.0.1 port 2508: Connection refused

想起之前不能clone于是设置了代理。后希望Lantern代理局域网于是更改了默认端口(将127.0.0.1换成本机ip即可)。

lantern.exe -addr 127.0.0.1:8787

没有及时更新git的设置因此报错。
设置git 代理命令如下

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

取消代理

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

你可能感兴趣的:(git 代理设置)