Hacker News new | ask | show | jobs
by couchand 3482 days ago
Where does that leave rebasing, then? That's explicitly an operation on diffs: take these diffs and apply them to that.
1 comments

Rebasing is implemented by generating diffs, yes. But git doesn't actually store these diffs -- they're all generated on the fly from tree snapshots. If your VC stores diffs rather than the actual contents of files then you can't be sure that you'll get out exactly the same data as you put into it. There are also a bunch of other problems that happen as a result.