I have a web server that share mercurial repositories. It shares projects in HTTPS with a self-signed certificate.
If I want to clone a repository, I can use the command (note the --insecure option that say to don't worry about certificate).
hg clone --insecure https://server/repository
My question is: how to do that with the Netbeans Mercurial plugin. If I try to do that, I have the following error:
Output: [abort: error: _ssl.c:490: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed]
Thanks