我的开发环境:
我在Windows环境下装了个WSL来连接Windows上的分系统Ubuntu,并且在Windows上用vscode来进行编程,但是最近发现了了个问题,就是代码commit完之后,进行push时一直失败,报connection refused
大概报错如下:
jack@DESKTOP-8T9ICND:/opt/devops_kit$ git pull
fatal: unable to access 'https://github.com'
解决
# 由于我用了梯子,所以电脑上是开了代理的,所以在git仓库的目录下设置代理地址
git config --global http.proxy http://127.0.0.1:10809
git config --global http.proxy https://127.0.0.1:10809
另外
# 取消代理
git config --global --unset http.proxy
git config --global --unset https.proxy
总结
1.取消代理,关闭梯子
2.用梯子的情况下,设置git的代理