fatal:unable to access "https://xxxxxxx"的一种解决方法
之前做项目下载包时遇到的问题,记录一下。
可能是不该加代理但是之前有加代理。
1、执行 git config - -global http.proxy 查询当前代理
2、执行 git config - -global - -unset http.proxy和git config - -global - -unset https.proxy 取消当前代理
3、增加代理 .
执行git config - -global http.proxy http://127.0.0.1:1080
执行git config - -global https.proxy http://127.0.0.1:1080