【git clone出现连接被拒绝的问题】
问题描述当我从github上拉取vue-admin-template项目模板时代码时报如下错误$ git clone https://github.com/PanJiaChen/vue-admin-template.git hrsaasCloning into 'hrsaas'...fatal: unable to access 'https://github.com/PanJiaChen/vue
·
问题描述
当我从github上拉取vue-admin-template项目模板时代码时报如下错误
$ git clone https://github.com/PanJiaChen/vue-admin-template.git hrsaas
Cloning into 'hrsaas'...
fatal: unable to access 'https://github.com/PanJiaChen/vue-admin-template.git/':
Failed to connect to 127.0.0.1 port 31181 after 2043 ms: Connection refused
原因分析:
经过排查出现上述错误的原因是使用了proxy代理
解决方案:
要解决上述问题,核心操作是要取消代理
1.先查看有没有使用代理
git config --global http.proxy
2.取消代理设置
git config --global --unset http.proxy
更多推荐
已为社区贡献4条内容
所有评论(0)