使用 Mercurial 的 hg clone 会抛出“getaddrinfo failed”错误(Windows 7)

发布于 2025-01-05 10:38:30 字数 286 浏览 3 评论 0原文

我在位桶网站上创建了一个公共存储库。我可以从办公网络 (LAN) 外部运行克隆命令。

但它不能在办公网络内工作。我怀疑这与防火墙或代理设置有关。我可以从浏览器窗口(IE9/Chrome)访问该 URL。

请帮助解决这个问题。谢谢。

指挥部:

hg clone https://bitbucket.org/gbsandeep/test2

abort: error: getaddrinfo failed

PS:我浏览了其他帖子,但没有帮助。

I have created a public repository on bit bucket website. I can run the clone command from outside the office network (LAN).

But it is not working inside the office network. I am suspecting it is to do with firewall or proxy settings. I can access the URL from browser window (IE9/Chrome).

Please help in fixing this problem. Thanks.

Command:

hg clone https://bitbucket.org/gbsandeep/test2

abort: error: getaddrinfo failed

PS: I went through other posts but it did not help.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(6

懵少女 2025-01-12 10:38:30

听起来您可能需要告诉 Mercurial 您的代理设置是什么。 “mercurial proxy”的第一次点击:

http://www.markhneedham.com/blog/2009/05/13/mercurial-pulling-from-behind-a-proxy/

如果你需要计算要使用哪些设置,您可能应该查看您的 IE 设置,例如转到“Internet 属性 | ”。连接 | LAN 设置对话框。

Sounds like you might need to tell Mercurial what your proxy settings are. First hit for "mercurial proxy":

http://www.markhneedham.com/blog/2009/05/13/mercurial-pulling-from-behind-a-proxy/

If you need to figure out what settings to use, you should probably look at what your IE settings are, e.g. by going to the Internet Properties | Connections | LAN Settings dialog.

怪我鬧 2025-01-12 10:38:30

如果您发现自己在这个页面上是因为在使用带有用户名的 hg-git 插件时遇到 getaddr 错误,那么您可能遇到了 < a href="https://bitbucket.org/durin42/hg-git/issues/164/fails-with-username-in-url-getaddreinfo" rel="noreferrer">URL 中的用户名失败(getaddreinfo失败) 错误。

因此:(

$ hg clone https://foo@stash/
abort: error: getaddrinfo failed
$ hg clone https://stash/
http authorization required for http://stash.....
realm: Atlassian Stash
user: ...

不能解决原始用户的问题,但可能导致相同的症状)。

If you find yourself on this page because you've hit a getaddr error when using the hg-git plugin with a username, it is likely that you've hit the Fails with username in URL (getaddreinfo failed) bug.

Thus:

$ hg clone https://foo@stash/
abort: error: getaddrinfo failed
$ hg clone https://stash/
http authorization required for http://stash.....
realm: Atlassian Stash
user: ...

(Doesn't solve the original user's issue, but can be a cause of the same symptoms).

2025-01-12 10:38:30

只需删除 http_proxy 环境变量即可。 (在 5 个小时的头痛之后,对我有用)。

Just remove the http_proxy environment variable. (worked for me, after of 5 hours of headache).

梦里南柯 2025-01-12 10:38:30

请先检查是否可以直接访问存储库。例如从网络浏览器

Pls check whether you can access the repository directly first. e.g from web browser

勿挽旧人 2025-01-12 10:38:30

对我来说,解决方案是设置 http_proxy env var。

For me, the solution was to set http_proxy env var.

知你几分 2025-01-12 10:38:30

在 PyCharm Mercurial 克隆对话框中,通过启用企业 VPN 并设置自动检测 Win 10 中的代理来解决该问题。但是,PyCharm 抛出了一些新的异常,如下所示:

6:03 PM 克隆失败
此处的网址克隆失败。
** 可能损坏的第三方扩展 hg4ideapromptextension 遇到未知异常
** 支持未知的 Mercurial 版本。
** 请禁用 hg4ideapromptextension 并重试您的操作。
** 如果这修复了错误,请将其报告给扩展作者。
** Python 2.7.13(v2.7.13:a06454b1afa1,2016 年 12 月 17 日,20:53:40)[MSC v.1500 64 位(AMD64)]
** Mercurial 分布式 SCM(版本 4.7.1)
** 加载扩展:strip、mq、hg4ideapromptextension
回溯(最近一次调用最后一次):
文件“hg”,第 41 行,位于

In PyCharm mercurial clone dialog that was resolved by enabling the corporate vpn and setting up automatically detecting the proxy in Win 10. However, the PyCharm throwed some new exception like this:

6:03 PM Clone failed
Clone from your url here failed.
** Unknown exception encountered with possibly-broken third-party extension hg4ideapromptextension
** which supports versions unknown of Mercurial.
** Please disable hg4ideapromptextension and try your action again.
** If that fixes the bug please report it to the extension author.
** Python 2.7.13 (v2.7.13:a06454b1afa1, Dec 17 2016, 20:53:40) [MSC v.1500 64 bit (AMD64)]
** Mercurial Distributed SCM (version 4.7.1)
** Extensions loaded: strip, mq, hg4ideapromptextension
Traceback (most recent call last):
File "hg", line 41, in

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文