Reputation: 3197
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?
Upvotes: 0
Views: 1329
Reputation: 11
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
Upvotes: 1