0

I've been using tortoisehg to work with a repo using ssh and everything is in order. But now i'm trying to clone another repo that uses only https, and I'm welcomed with the following error message:

URLError: [Errno 10061] No connection could be made because the target machine actively refused it
[command returned code 255. . .]

I tried to localized the settings of my current repo, i.e. remove them from global settings, to ...\.hg\hgrc, but i still get the same error when i try to clone.

Any ideas on this?

rethabile
  • 3,029
  • 6
  • 34
  • 68
  • 1
    What makes you think that the problem is related to your original repository? It seems to me like you just can't connect to where you are trying to clone from. – Mark Hildreth Oct 05 '12 at 09:53
  • I thought it is using log-in details of the original repo because it doesn't even ask for my passwords. – rethabile Oct 05 '12 at 11:23
  • 1
    No, that's not an authentication error, from the looks of it. Looks more like a firewall. – Craig Stuntz Oct 05 '12 at 13:41

1 Answers1

1

A bit late response but perhaps its a proxy error...

see: How to clone a codeplex mercurial repository behind a proxy?

but instead use

[https_proxy]
host = proxy name /  ip:port
user = xxxxxxx
passwd = xxxxxxx
Matthew
  • 11
  • 2