无法克隆git存储库

时间:2016-07-07 06:33:58

标签: git github

我正在尝试克隆git存储库但是我收到此错误。

fatal: unable to access
'https://github.com/udacity/Sunshine-Version-2.git/':  Failed to
connect to 10.1.1.9 port 8080: Timed out

早些时候我在学院的代理人后面,但我现在正在使用我的家庭网络。

我尝试使用命令git config --global --unset core.gitproxy禁用代理,但仍然遇到致命错误。

请帮我解决这个问题。

编辑:我已经尝试了你们建议的所有内容,但没有任何工作。这是快照。 Snapshot

2 个答案:

答案 0 :(得分:1)

检查您是否在任何地方都有任何代理指令:

git config --global --unset http.proxy
git config --global --unset https.proxy

git config --local --unset http.proxy
git config --local --unset https.proxy

然后检查您的OS环境变量。例如,在Windows上:

set http

这将显示以http开头的任何变量(小写或大写) 如果找到,请取消设置(Linux上为unset,Windows上为set xxx=

OP Akhilesh Yadav确认这是一个环境变量问题

env|grep -i proxy
unset ..._proxy

检查用户设置:

cd 
grep -i proxy .*

.bashrc.profile可以声明这些代理变量:编辑文件并删除或注释这些指令。

答案 1 :(得分:0)

尝试通过git clone git@github.com:user/repo.git中的ssh进行克隆,这样可以减少代理问题。