-
Notifications
You must be signed in to change notification settings - Fork 62
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
cdiff is breaking blocks #75
Comments
To clarify, in the above minimal case, But in a slightly more complex case designed to mimic real usage conditions, it fails in the way described above. The slightly more complex case is... Before:
After:
In that case
But when piped to
|
It's a behavior of python difflib, which is slightly different to git/svn diff and patchutils, I imagine enhancing this requires to touch core diff algorithm in difflib. I agree it's confusing but IMHO not worth to "fix" as the diff format is still right. Thanks for reporting! |
Let's say I have...
...and I change it to...
...then
git diff
will correctly identify the change as......but if I pipe
git diff
tocdiff
, it shows the change as:How can I fix this? Thanks.
The text was updated successfully, but these errors were encountered: