我正在尝试克隆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答案 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进行克隆,这样可以减少代理问题。