More on Version Control
velmu
66 points
19 comments
March 29, 2026
Related Discussions
Found 5 related stories in 50.4ms across 3,471 title embeddings via pgvector HNSW
- The future of version control c17r · 477 pts · March 22, 2026 · 72% similar
- Contextual commits – An open standard for capturing the why in Git history vidimitrov · 30 pts · March 12, 2026 · 52% similar
- Sem – Semantic version control. Entity-level diffs on top of Git pabs3 · 84 pts · March 08, 2026 · 50% similar
- Show HN: Claude's Code – tracking the 19M+ commits generated by Claude on GitHub phantomCupcake · 13 pts · March 24, 2026 · 47% similar
- It's time to move your docs in the repo gregdoesit · 96 pts · March 14, 2026 · 46% similar
Discussion Highlights (7 comments)
mrtesthah
Someone make a TLA+ model for this bad boy
SAI_Peregrinus
Discussion on the previous post in this series: https://news.ycombinator.com/item?id=47478401
josephg
> Oddly they don’t seem to have figured out the generation counting trick, which is something I did come up with over twenty years ago. Combining the two ideas is what allows for there to be no reference to commit ids in the history and have the entire algorithm be structural. Can you say more about this? What exactly is this trick you’re talking about? What are the benefits?
sfink
I've read much of the HN discussion on the previous post, a skimmed the rest, but I didn't see a couple of things addressed: First, how could you make this deal with copies and renames? It seems to me like the pure version of this would require a weave of your whole repository. Second, how different is this from something like jujutsu? As in, of course it's different, your primary data structure is a weave. But jj keeps all of the old commits around for any change (and prevents git from garbage collecting them by maintaining refs from the op log). So in theory, you could replay the entire history of a file at a particular commit by tracing back through the evolog. That, plus the exact diff algorithm, seems like enough to recreate the weave at any point in time (well, at any commit), and so you could think of this whole thing as a caching layer on top of what jj already provides. I'm not saying you would want to implement it like that, but conceptually I don't see the difference and so there might be useful "in between" implementations to consider. In fact, you could even specify different diff algorithms for different commits if you really wanted to. Which would be a bit of a mess, because you'd have to store that and a weave would be a function of those diff algorithms and when they were used, but it would at least be possible. (Cohen's system could do this too, at the cost of tracking lots of stuff that currently it doesn't need or want to track.) I'm skeptical that this would be useful except in a very limited sense (eg you could switch diff algorithms and have all new commits use the new one, without needing to rebuild your entire repository). It breaks distributed scenarios -- everyone has to agree on which diff to use for each commit. It's just something that falls out of having the complete history available. I'm cheating with jj a bit here, since normally you won't be pushing the evolog to remotes so in practice you probably don't have the complete history. In practice, when pushing to a remote you might want to materialize a weave or a weave-like "compiled history" and push that too/instead, just like in Cohen's model, if you really wanted to do this. And that would come with limitations on the diff used for history-less usage, since the weave has to assume a specific deterministic diff.
kelnos
> The unsafe versions of these things literally throw out history and replace it with a fiction that whoever did the final operation wrote everything, or that the original author wrote something possibly very divergent from what they actually wrote. When I'm rebasing my own work and editing history, that's exactly what I'm looking to accomplish, though.
tcoff91
So many tools are tightly coupled to git or just assume that everybody uses git. I think that it's hard for any new VCS to gain traction without good git compatibility. For instance Pijul might very well be a lot better than git / jj. I wouldn't know, I haven't bothered trying it because all the projects I need to work in use git. But since jj has great git compatibility, I actually have been able to adopt it because of its git backend. A new VCS that doesn't have git compatibility at its core is going to have a really hard time overcoming network effects.
Surac
I for my part have not migrated to GIT cause i do not need the extra hoops like staging area or syncing whole repos over network. I have always a server at my side and can work with checkout/checkin. This implies a hard requirement at interface definitions, cause people can't just alter them. Seeing people struggle with all the problems introduced with the git way of work I feel there is still a big market for not git. People are introduced to git and stop asking if there isn't something more good to there workfow. Excuse my english please, im a non native speaker