我正在尝试从GitHub克隆一些存储库,但出现类似以下错误:
fatal: unable to access 'https://github.com/some/thing.git/': Received HTTP code 403 from proxy after CONNECT
我落后于公司代理,但已经在。gitconfig
中设置了它。
这是在我的.gitconfig
内:
[http]
proxy = http://something.com:80
[https]
proxy = http://something.com:80
你有什么主意吗?
答案 0 :(得分:0)
您的代理需要凭证吗?如果是,请在代理URL中添加您的凭据。您可以尝试在cmd中运行此命令。
git config --global https.proxy http://username:password@host:port
此命令将如下更新您的.gitconfig文件。
postgres