diff options
author | Justin Su <injustsu@gmail.com> | 2024-09-01 08:59:45 -0400 |
---|---|---|
committer | Wilfred Hughes <me@wilfred.me.uk> | 2024-09-02 16:06:27 -0700 |
commit | e389cfe9f63fc126ddef16fb82476ce1968efb7b (patch) | |
tree | 57b8ca1537da390a4af3a38004396abbc5698ea1 | |
parent | 3c62ff37c04b1f8a6c625a0c8ac11a04d284d939 (diff) |
[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'`.
-rw-r--r-- | manual/src/git.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manual/src/git.md b/manual/src/git.md index df795c683b..8ae5d0ee1e 100644 --- a/manual/src/git.md +++ b/manual/src/git.md @@ -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 |