Skip to content

Commit f9dcff7

Browse files
committed
Remove quote escape.
Escaping the quotes causes errors. Double quotes should not be escaped because the command is surrounded by single quotes.
1 parent 4a7143e commit f9dcff7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

book/08-customizing-git/sections/config.asc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ So, you can either run four config commands
286286
----
287287
$ git config --global merge.tool extMerge
288288
$ git config --global mergetool.extMerge.cmd \
289-
'extMerge \"$BASE\" \"$LOCAL\" \"$REMOTE\" \"$MERGED\"'
289+
'extMerge "$BASE" "$LOCAL" "$REMOTE" "$MERGED"'
290290
$ git config --global mergetool.extMerge.trustExitCode false
291291
$ git config --global diff.external extDiff
292292
----

0 commit comments

Comments
 (0)