请求的URL返回错误502,公司?

问题描述 投票:3回答:3

有谁知道git似乎有什么问题?运行git cloneteam foundation server(tfs)克隆时,我收到此错误。

 fatal: unable to access 'http://website.com/_git/project': The requested URL returned error: 502
git git-clone
3个回答
2
投票

问题不在于git。相反,该网站给你一个502错误,即坏网关错误。这里给出了一些原因以及如何修复502:

https://www.lifewire.com/502-bad-gateway-error-explained-2622939

另外,请确保您正在克隆git存储库。


2
投票

我遇到了同样的问题。出于某种原因,我在我的git配置列表中设置了http和Https代理。删除那些允许我成功克隆。


1
投票

供参考:在身份验证代理服务器后面的公司环境中,我之前编辑过我的git global config,代理服务器的覆盖。一旦我纠正了这个,我就可以连接了。

有用的命令:

git config --global --list


[filter "lfs"]
        clean = git-lfs clean -- %f
        smudge = git-lfs smudge -- %f
        process = git-lfs filter-process
        required = true
[user]
        name = GuyWicks
[user]
        email = [email protected]
[http]
    proxy = http://public-cache:8080

[https]
    proxy = http://public-cache:8080

我注释掉了四条代理线(#)

© www.soinside.com 2019 - 2024. All rights reserved.