3

我在 Windows 7 中使用 TortoiseGit 和 MsysGit。我需要将存储库从 github 克隆到我的桌面。我做了右键单击-> Git Clone-> https://github.com/username/sample.git 。我得到的响应是:

Cloning into 'D:\repo\sample'...
error: The requested URL returned error: 407 while accessing https://github.com/TruMobi/sample.git/info/refs?service=git-upload-pack
fatal: HTTP request failed

我已经在 TortoiseGit 中完成了代理设置。请帮我解决这个问题。

4

1 回答 1

6

HTTP 407 表示您需要配置 HTTP 代理用户名/密码。我无法帮助您了解您的代理服务器是什么,或使用它的凭据 - 但无论您身在何处,我都会与网络人员核实。

您可以使用git config命令执行此操作。

$ git config --global http.proxy http://proxyuser:proxypwd@proxy.server.com:8080

我不确定 TortoiseGit 是否有一个 UI 来设置它,但它很可能有。毫无疑问,它会尊重底层的 git CLI 设置,所以为了确定,我会这样做。

此外,请参阅此处进行更多讨论。

于 2013-08-09T12:13:21.500 回答