3

The git 2.9 release came with an experimental diff algorithm --compaction-heuristic. I've set up git, and git gui to use this.

However I can't figure out how to configure gitk to use this option. I'm aware of the .gitk config file, but I can't figure out how configure diff options.

crea1
  • 11,077
  • 3
  • 36
  • 46

1 Answers1

4

Setting diff.compactionHeuristic true in your git config should be picked up by gitk.

git config --global diff.compactionHeuristic true
robotroll
  • 92
  • 7