When I run 'git diff', part of the header of each diff is displayed in white text. Since I use a light background, it is hard to read, so I want to change it.
I found that I can change other colors on diff output like this (in .gitconfig
): [color "diff"] old = green new = red
But I canβt figure out what to add there for the title. Better yet, is there somewhere where all the default git config
options are documented?
By the heading "diff" I mean the following lines: diff --git a/README.md b/README.md index f102026..c5e3428 100644 --- a/README.md +++ b/README.md
source share