I\'m looking for a way to make --insecure
option the default one for any hg
\\ TortoiseHg command.
Please don\'t write this is a bad practi
You can use aliases to achieve that. Add this to your .hgrc
:
[alias]
push = push --insecure
Problem is you wil have to do this for each command you want to use and I suggest you use different names for your aliases than the default one.
As far as I know, there's no way to enforce --insecure
for all commands "automatically".