Turn off HTTPS host authentication in TortoiseHG for internal self-signed certificates

How to disable HTTPS host authentication in TortoiseHG for internal self-signed certificates. For internal servers, HTTPS is mainly used for encryption.

The TortoiseHG documentation states that you can disable host verification (i.e. checking against a certificate authority chain) here , but I can't seem to find this option.

It is assumed that it will be an option when cloning a remote repository. I am using the latest version of TortoiseHG 2.0.5

+15
source share
2 answers

TortoiseHG Workbench "" ( "" ), , :

enter image description here

, No host validation, but still encrypted, . , - mercurial.ini:

[insecurehosts]
bitbucket.org = 1

TortoiseHg, , , Clone.

--insecure, :

hg clone --insecure https://hostname.org/user/repository repository-clone

, , , ( ):

warning: bitbucket.org certificate with fingerprint 
 24:9c:45:8b:9c:aa:ba:55:4e:01:6d:58:ff:e4:28:7d:2a:14:ae:3b not verified
 (check hostfingerprints or web.cacerts config setting)

, hg, TortoiseHg. TortoiseHg Security No host validation Verify with stored host fingerprint. "" mercurial.ini:

[hostfingerprints]
bitbucket.org = 81:2b:08:90:dc:d3:71:ee:e0:7c:b4:75:ce:9b:6c:48:94:56:a1:fe

, , .

.

+29

Clone " ".

+1

All Articles