-
How to instruct delta to output all lines when diffing two files? delta 1.txt 2.txt For example, |
Beta Was this translation helpful? Give feedback.
Answered by
th1000s
May 6, 2024
Replies: 1 comment 2 replies
-
|
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
Zebradil
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
delta 1.txt 2.txt
calls an external diff tool, but the passed arguments can't be changed. But you can call this tool yourself, and then pipe that todelta
:git diff --no-index -U9999 1.txt 2.txt | delta
or
diff -U9999 1.txt 2.txt | delta