I am using TortoiseHG version 2.4.2 and with either firefox or internet explorer I can browse the following codeplex project just fine.
https://hg.codeplex.com/oxyplot
The problem is that I cannot clone the repository on my local computer. Initially, I used to get errors like this,
URLError: [Errno 10061] No connection could be made because the target machine actively refused it
Some google-fu later (HOURS later), I figured out that I needed to set proxy settings for tortoiseHg, which annoyingly enough doesn't use the default windows settings. This question helped point me in the right direction. Here are the steps that I followed,
- Open up the TortoiseHg Workbench
- Select File > Settings
- Press button 'Edit File' near the top-right to open file editor
And in the file I added these lines,
[http_proxy]
host = 111.11.11.11:80
user = xxxxxxx
passwd = xxxxxxx
(Actual values are not shown for obvious reasons)
Now when I try to clone the repository with the above link I get THIS error,
SSL error: unknown protocol
I am beginning to tear my hair out in frustration now! Does anyone know what I'm suppossed to do next? Googling the issue produces links which talk about bitbucket, timeouts ... etc - Greek and Latin to me.
EDIT 1: I slept over the issue and the only thing I realize is that proxies are very custom things. Still, if anyone has any hints/directions I could try, it would be VERY appreciated. For what it's worth, I'm using Visual Studio 2010 as my IDE. Anything I could try from in there?