在ubuntu上通过squid代理访问github

在ubuntu上通过squid代理访问github

我无法克隆特定的 GitHub 分支!当我尝试这样做时,它显示以下错误。

           Cloning into 'ws'...
           error: The requested URL returned error: 407 while accessing https://github.com/abcd/efg.git/info/refs
           fatal: HTTP request failed

请帮忙 !!

答案1

尝试在运行 git 之前设置 http_proxy 和 https_proxy,它应该遵守以下环境变量:

export http{,s}_proxy=http://your.squid.server.ip:3128
git whatever

答案2

407 是 Proxy AuthRequired 异常。如果您的代理需要用户名/密码,您需要提供它以便 Git 每次或通过您导出的某些配置将请求路由到您的代理

相关内容