有谁知道git
似乎有什么问题?运行git clone
从team foundation server
(tfs)克隆时,我收到此错误。
fatal: unable to access 'http://website.com/_git/project': The requested URL returned error: 502
问题不在于git。相反,该网站给你一个502错误,即坏网关错误。这里给出了一些原因以及如何修复502:
https://www.lifewire.com/502-bad-gateway-error-explained-2622939
另外,请确保您正在克隆git存储库。
我遇到了同样的问题。出于某种原因,我在我的git配置列表中设置了http和Https代理。删除那些允许我成功克隆。
供参考:在身份验证代理服务器后面的公司环境中,我之前编辑过我的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
我注释掉了四条代理线(#)