Cursor's post explains a new Git hosting architecture called Continuity. The basic move is to leave Git's object model and behavior intact, then wrap it in a distributed system that stores repository data as Git expects while coordinating updates through a write-ahead log on S3, local replicas, and background compaction. The article argues this avoids the usual pain of translating Git into a separate database model, which matters more now that giant monorepos and always-on CI turn short outages into expensive team-wide slowdowns.
The strongest reaction was that the design is impressive because it picks a hard constraint and commits to it. Instead of reimagining source control, it accepts that Git's wire format, packfiles, and reference behavior are the product. That framing made the rest of the system feel less strange to experienced infra people. At the same time, a lot of the magic sits on top of S3 semantics. People zeroed in on the fact that this only works if the object store gives strong enough guarantees for durability, conditional writes, and read-after-write behavior. That makes the post partly a story about modern object storage as a distributed systems primitive, not just about Git.
Several commenters also pulled the business claim back to earth. Git serving at scale is a real problem, and GitHub's own incident posts suggest large repos and Git read paths are part of the pain. But many people still see pull requests, Actions, auth flows, webhooks, and surrounding product machinery as the bigger source of user frustration than raw Git throughput. So the post landed as credible infrastructure work, not proof that a better Git backend alone wins the market.
If you run infrastructure at scale, the practical lesson is to pay attention to storage semantics, not just APIs. If you evaluate new code hosting platforms, separate the elegance of the Git layer from the harder product problems around CI, pull requests, trust, and operational reliability.
Mostly impressed with the engineering and the quality of the writeup, with a skeptical undertone about how much of the difficulty was outsourced to S3 and whether better Git hosting solves the problems users actually feel day to day.
Key insights
01
Keeping Git unchanged drives the design
Treating stock Git as the non-negotiable building block explains why the system looks odd if you come from generic distributed database design. Once you accept that packfiles, refs, and Git's exact behavior must survive intact, the architecture stops looking like a missed chance to invent something cleaner and starts looking like a compatibility-first scaling layer.
If you are designing around a dominant protocol or file format, decide early whether compatibility is a hard constraint or not. That choice will determine your whole architecture more than any database fashion.
The clever part is not merely using object storage. It is betting on specific S3 behaviors like durability, read-after-write visibility, and conditional writes that are strong enough to act like coordination primitives. That is why some people saw the post as less about Git and more about building a distributed system on top of an object store whose guarantees are unusually good and not always matched by every "S3-compatible" alternative.
If your design says "works on S3," write down the exact guarantees you rely on and test them against each vendor you might use. API compatibility alone is not enough for systems that lean on storage for correctness.
The tempting design is to split content-addressed objects and refs into separate distributed databases. The pushback was that Git's external API still revolves around packfiles, and serving realistic workloads means reconstructing or caching those packfiles efficiently. That makes a neat "objects in one store, refs in another" architecture much harder in practice than it looks on a whiteboard.
Before replacing a legacy storage engine with cleaner components, trace all outward-facing formats and performance-critical read paths. Compatibility at the data model level can still fail at the packaging and serving layer.
Extreme concurrency does not mean every push fights every other push. Git objects can usually arrive independently, while the real hotspot is branch and ref updates, especially on a shared trunk. That is why commit queues and branch-level coordination show up before teams need a wholesale reinvention of source control.
If your repos are feeling concurrency pain, measure ref update contention before assuming the whole VCS is the bottleneck. Process tools like commit queues may buy far more headroom than a platform migration.
The post's line about three-phase commit and accepting a push on majority acknowledgment raised eyebrows because that does not match how many engineers expect 3PC to be described. Even people who liked the architecture flagged this as a place where the writeup seems to blur consensus details that matter for understanding failure behavior.
When you publish infra architecture, be precise about coordination algorithms and quorum rules. Readers will trust the design more if the failure model is spelled out cleanly instead of hand-waved.
The skeptical view is that Git hosting is not where incumbents are weakest. Pull requests, CI, policy controls, and workflow ergonomics are what most teams live in all day. A fast new backend is still useful, but it does not automatically translate into a compelling platform unless the surrounding product beats GitHub too.
When judging a new developer platform, map the technical breakthrough to the daily workflow it actually improves. Infrastructure wins that users rarely touch do not guarantee customer migration.
A few people came away with the opposite lesson from the post. They saw it as proof that Git's internals are so idiosyncratic that scaling them for modern centralized hosting keeps forcing heroic engineering. If your work is mostly trunk-based development, squash merges, or binary-heavy projects, Git's model can feel like inherited baggage rather than an advantage.
If your team fights Git more than it benefits from Git, do not assume the answer is a more scalable host. Revisit whether your workflow and artifact mix still fit Git's strengths.
Some readers dismissed the entire product regardless of the technical achievement because they do not trust the company's stewardship, privacy posture, or ownership ties. That is not a technical objection, but it changes the practical value of the post. Great infra does not overcome concerns about where your code lives and who controls the platform.
For code hosting, governance and trust are product features. If you are building in this market, assume buyers will evaluate ownership, data handling, and brand risk alongside architecture.
GitHub availability update
Cited to argue about whether GitHub's scaling pain is mainly in Git itself or in surrounding systems like auth, caches, and webhooks.