Hacker Newsnew | past | comments | ask | show | jobs | submitlogin

A third (fourth?) option worth mentioning here is difftastic[0], which uses "structural" diffing (as opposed to line diffing) for more granular diff highlighting.

[0] https://github.com/Wilfred/difftastic



A fourth (fifth?) option worth mentioning is patdiff: https://opensource.janestreet.com/patdiff/ From what I remember, it sometimes (35%) made diffs easier to read, usually (60%) made no difference, and rarely (5%) made them harder to read. I used it a few years ago though, so I don't remember specifically what the problem was. The only reason I stopped using it was because I started using magit for git diffs.


I agree that the patience diff algorithm generally produces better results, but you don’t need the patdiff tool for that. You can configure Git’s own diffs to use patience: https://git-scm.com/docs/git-config#Documentation/git-config...

I see that patdiff also provides word-level diffing. You could instead get that feature with `git diff --word-diff` or Delta (https://github.com/dandavison/delta).


This is a great approach indeed, pity it's not integrated widely enough (think it only recently got a proper structured json output other tools could use)


Thank you for sharing this project! I have been searching for something like this for some time


I also wonder if it's possible to go beyond this project and have git itself work on the syntax level instead of pure text.


I feel it is best to leave git out of this - separation of concerns Let external tools evolve independently instead.


Git doesn't store diffs on logical level. Git operates on snapshots of trees. Commit is not "a collection of changes", it's a snapshot of a tree with attached predecessor of it.

Then the another layer (which can be git, but also can be any other tool, adding custom diff tool to git is very easy) uses that to generate diffs.

There is zero stopping anyone from adding contextual diffs to Git. Just ask it for content of both commits and feed it to the algorithm.

Yes, git underneath stores data as diffs but they are only vaguely related to logical structure of commits


> Then the another layer (which can be git, but also can be any other tool, adding custom diff tool to git is very easy) uses that to generate diffs.

Linky: https://stackoverflow.com/questions/255202/how-do-i-view-git...


> Yes, git underneath stores data as diffs but they are only vaguely related to logical structure of commits

And that's why we call that lower level compression trick "delta", not "diff".


Interesting. Wonder if something like that can be used to make git cleverer about merges for example.


Git’s merge algorithm looks at three versions of the code: the two branch tips being merged, and their common ancestor. It might be better at resolving conflicts if it looked at some of the intermediate commits as well, but I don’t know of anything that does so.


Merge part isn't pluggable like that IIRC. Would be interesting if that was given stable interface, then supposed "smart merge" tool could iterate with few ways to merge code while running tests to check which one produces least/no errors


ediff in emacs does this. Refine is what highlights the words that are different.


This blog post also details using difftastic within emacs and has neat comparisons:

https://shivjm.blog/better-magit-diffs/


`git diff --word-diff` has something close to this and it’s really nice.


only side-by-side view, unfortunate for my unified view taste


It has a --display=inline option now.


It works! Can't seem to find the option in GitHub README or the documentation though




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: