I want to use the '--compaction-heuristic' option in my global git config file. It's an option of the git log command:
--compaction-heuristic
--no-compaction-heuristic
These are to help debugging and tuning an experimental heuristic (which is off by default) that shifts the hunk boundary in an attempt to make the resulting patch easier to read.
The git config documentation suggests adding config settings like this example:
git config --global core.editor emacs
There doesn't appear to be anything in the git log documentation that states what this config value should be - so what is it and where would I find the specification that explains the format of the line:
git config --global [magic to enable compaction-heuristic here]
This git feature has now been removed anyway