Git配置https_proxy访问github失败

现象:

拉取github仓库报错如下:

Git Pull Failed: unable to access 'https://github.com/*.git/': Proxy CONNECT aborted

解决措施:

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

设置时不要设置密码,https下密码认证不通过。

在git shell下使用 

GIT_CURL_VERBOSE=1 GIT_TRACE=1 git clone https://github.com/**.git

 

  可以看到具体日志

 

posted @ 2020-10-11 00:49  Alcc  阅读(2783)  评论(0编辑  收藏  举报