6 ms·
Thank you for sharing this project! I have been searching for something like this for some time
by videlov 3y ago
Thank you for sharing this project! I have been searching for something like this for some time
- grotorea 3y agoI also wonder if it's possible to go beyond this project and have git itself work on the syntax level instead of pure text.
- ilyt 3y agoGit 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
- grotorea 3y agoInteresting. Wonder if something like that can be used to make git cleverer about merges for example.
- fanf2 3y agoGit’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.
- deleted 3y ago[deleted]
- ilyt 3y agoMerge 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
- yencabulator 3y ago> 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".
- Izkata 3y ago> 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-diff-output-with-my-preferred-diff-tool-viewer https://stackoverflow.com/questions/255202/how-do-i-view-git...
- mechanicker 3y agoI feel it is best to leave git out of this - separation of concerns Let external tools evolve independently instead.