provide an --insecure switch to remote operations to work around damaged certificates
1 files changed, 2 insertions(+), 1 deletions(-) M hgext3rd/confman/opts.py
M hgext3rd/confman/opts.py +2 -1
@@ 5,8 5,9 @@ ROOTPATHOPT = ('', 'root-path', '', PULLURIOPT = ('p', 'use-hgrc-path', '', 'distant repository path name registered into hgrc.paths.*') URIMAPOPT = ('', 'uri-map-file', '', 'specify uri map file') +HTTPSOPT = ('', 'insecure', False, 'work around self bad certificates') HGGITOPT = ('', 'hggit', True, 'git: operate with hg-git') DEFAULTOPTS = [INCLUDEOPT, EXCLUDEOPT, ROOTPATHOPT, HGGITOPT] -REMOTEOPTS = [PULLURIOPT, URIMAPOPT] +REMOTEOPTS = [PULLURIOPT, URIMAPOPT, HTTPSOPT]