How can I override .hgrc options on the command line?

Usually I want to ignore changes in the gap when they differ from the mercury ones. If I set this as the default by putting ignorews = true.hgrc [diff] in my section, there seems to be no way to force the display of space changes for a single call on the command line. What am I missing?

FWIW: None of the corresponding command line options accept an argument. Using a section (deprecated) [defaults]has the same behavior. I assume the final answer will be “use an alias to ignore space”, but I hope something better exists.

+5
source share
1 answer

On the hg(1)man page :

   --config
          set/override config option (use 'section.name=value')
+6
source

All Articles