delta
delta copied to clipboard
Doesn't work with git version `2.37.0`
Using delta 0.13.0. I have this in my .gitconfig file:
[interactive]
diffFilter = delta --color-only
Which worked great when using git add -p. Since version 2.37.0 of git, it blows up:
error: could not parse colored hunk header
And then some random stuff.
Workaround:
[add.interactive]
useBuiltin = false
(Credit to @malsyned in issue linked above)
I would say it is a Git regression, and should be reported to the Git mailing list: http://git-scm.com/community.
I would say it is a Git regression, and should be reported to the Git mailing list: http://git-scm.com/community.
Reported here: https://lore.kernel.org/git/[email protected]/T/#u
Fixed in Git 2.38, out today: https://github.com/git/git/blob/3dcec76d9df911ed8321007b1d197c1a206dc164/Documentation/RelNotes/2.38.0.txt#L353-L356
Indeed it is! Thanks!
Fixed for me too. Thanks for following up!