escape quotes

I had not luck with these unescaped quotes; if added to the config via `git config` they likely get escaped automatically, but if done so directly in git's config file they seem to need escaping
pull/876/head
Enno 2025-09-09 16:56:07 +07:00 committed by GitHub
parent 1a4313423d
commit 7224155031
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

@ -112,7 +112,7 @@ To define a difftool named `difftastic`, add the following to your
```ini
[difftool "difftastic"]
# See `man git-difftool` for a description of MERGED, LOCAL and REMOTE.
cmd = difft "$MERGED" "$LOCAL" "abcdef1" "100644" "$REMOTE" "abcdef2" "100644"
cmd = difft \"$MERGED\" \"$LOCAL\" \"abcdef1\" \"100644\" \"$REMOTE\" \"abcdef2\" \"100644\"
```
You can now use difftastic as a difftool: