Failed to connect to github.com port 443 after 21116 ms: Couldn‘t connect to server

1.背景

下载这个项目vue-element-admin-master的依赖的时候报错

fatal: unable to access 'https://github.com/adobe-webplatform/eve.git/': Failed to connect to github.com port 443 after 21116 ms: Couldn't connect to server

2.原因

网络问题,但是自己的代理,浏览器访问都可以的。网页可以打开github。说明命令行在拉取/推送代码时并没有使用进行代理

3.解决

我的代理端口号就是7890,因此只执行这两句就可以拉

git config --global http.proxy 127.0.0.1:7890
git config --global https.proxy 127.0.0.1:7890

不知道自己端口号参考这个文章,写的很详细Git报错: Failed to connect to github.com port 443 解决方案_zpf1813763637的博客-CSDN博客

你可能感兴趣的:(前端,github)