git: Fix deprecated subsection config syntax
Apparently marking subsections like `[section.subsection]` (toml-like) is deprecated in the configuration. This commit fixes this by using the recommended `[section "subsection"]` syntax. See: https://git-scm.com/docs/git-config#_syntax
This commit is contained in:
parent
506b6cb2f6
commit
2f69b955d2
1 changed files with 2 additions and 2 deletions
|
@ -41,14 +41,14 @@
|
||||||
prompt = false
|
prompt = false
|
||||||
[difftool "difftastic"]
|
[difftool "difftastic"]
|
||||||
cmd = difft "$LOCAL" "$REMOTE"
|
cmd = difft "$LOCAL" "$REMOTE"
|
||||||
[color.diff]
|
[color "diff"]
|
||||||
meta = "9"
|
meta = "9"
|
||||||
frag = "magenta bold"
|
frag = "magenta bold"
|
||||||
commit = "yellow bold"
|
commit = "yellow bold"
|
||||||
old = "red bold"
|
old = "red bold"
|
||||||
new = "green bold"
|
new = "green bold"
|
||||||
whitespace = "red reverse"
|
whitespace = "red reverse"
|
||||||
[color.diff-highlight]
|
[color "diff-highlight"]
|
||||||
oldNormal = "red bold"
|
oldNormal = "red bold"
|
||||||
oldHighlight = "red bold 52"
|
oldHighlight = "red bold 52"
|
||||||
newNormal = "green bold"
|
newNormal = "green bold"
|
||||||
|
|
Loading…
Reference in a new issue