gpt4 book ai didi

公司代理背后的 Git 克隆

转载 作者:太空狗 更新时间:2023-10-29 13:06:22 24 4
gpt4 key购买 nike

我在公司代理后面工作,使用 Windows 7 电脑,我会使用 git hub,克隆一些 repo,进行 pull 、提交和推送。

我不知道代理的密码。

我可以通过“下载 ZIP”按钮定期下载存储库,但我会通过命令行或 GitHub 客户端应用程序使用 GIT。

谢谢。

编辑

我正在尝试克隆的存储库是一个私有(private)存储库,我是贡献者。

我收到以下消息:

*严重:无法访问“https:***.git/”:连接在 300043 毫秒后超时*

最佳答案

I does not know why I can regularly download the ZIP but I can't clone the repo. Why this difference?

代理用于访问互联网(这意味着“走出”您的内部网络)。在你的情况下,你可以下载 ZIP 但同时你不能从 GitHub 中提取代码,看起来你没有正确的权限。

当您下载 ZIP 时,您只需连接到互联网并下载文件,而当连接到 git 并尝试下载代码时,您需要使用 git protocols 中的任何一个。 .

尝试 set up SSH key as described in the following answer here .

###总结:

  • 如果您可以从 Web 下载文件,则说明您已连接到 Internet。

  • 设置 git 代理配置:

      git config --global http.proxy http://user:pass@proxy.server.com:8080
    git config --global https.proxy http.proxy http://user:pass@proxy.server.com:8080

但在您的情况下,您不知道密码,因此您应该首先尝试设置 SSH key 并检查它是否有效。

关于公司代理背后的 Git 克隆,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34988038/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com