Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

`git config interactive.diffFilter diff-highlight`: the same diff by lines - and without color

After git config --global interactive.diffFilter diff-highlight my .gitconfig:

# This is Git's per-user configuration file.
[user]
    name = Vitaly Zdanevich
    email = [email protected]
[core]
    excludesfile = /Users/vitaly/.gitignore_global
[filter "lfs"]
    clean = git-lfs clean -- %f
    smudge = git-lfs smudge --skip -- %f
    process = git-lfs filter-process --skip
    required = true
[diff]
    tool = vimdiff
    context = 20
[difftool]
    prompt = false
[interactive]
    diffFilter = diff-highlight

But in git commit -p and git add -p I see the same diff line-by-line without color in default terminal.app:

git config interactive.diffFilter diff-highlight git diff without color

Also I tried:

git -c interactive.diffFilter="git diff --color-words" add -p

And get:

fatal: mismatched output from interactive.diffFilter
hint: Your filter must maintain a one-to-one correspondence
hint: between its input and output lines.

My git version is 2.17.2 (Apple Git-113) on macOS 10.14.1 from the official Command Line Tools, I prefer simplicity so not from the Brew.

like image 385
Vitaly Zdanevich Avatar asked Nov 08 '18 18:11

Vitaly Zdanevich


1 Answers

Looks like fixed with new git version (2.26.2)

git diff-highlight

like image 172
Vitaly Zdanevich Avatar answered Oct 15 '22 20:10

Vitaly Zdanevich