[docs] Remove unnecessary double quotes in Git alias

This makes the config option identical to running `git config --global alias.dlog '-c diff.external=difft log -p --ext-diff'`.
pull/763/head
Justin Su 2024-09-01 08:59:45 +07:00 committed by Wilfred Hughes
parent 3c62ff37c0
commit e389cfe9f6
1 changed files with 1 additions and 1 deletions

@ -71,7 +71,7 @@ equivalent to the one-off commands shown above.
```ini
# `git dlog` to show `git log -p` with difftastic.
[alias]
dlog = "-c diff.external=difft log -p --ext-diff"
dlog = -c diff.external=difft log -p --ext-diff
```
## Difftastic By Default