top | item 46845947

(no title)

AbuAssar | 29 days ago

it is worth noting that Jujutsu uses Git’s storage, networking, and ecosystem.

discuss

order

steveklabnik|29 days ago

It uses it when you use the git backend, but not when you don’t.

Right now, the only other backend is at Google, so it’s not practical for most people. But it’s not an inherent part of jj, and that’s really important, actually.

tuwtuwtuwtuw|28 days ago

For anyone that does not work at Google, it sounds like an implementation detail that does not matter.

SAI_Peregrinus|29 days ago

Git's plumbing is great. Git's porcelain is what sucks. JJ replaces the porcelain.

capitainenemo|28 days ago

Git's plumbing also kinda sucks (in places). Some of the current limitations of jj in what syncing state between repos is due to things missing from git that they are having a hard working around, at least based on what I've seen browsing their tickets. That inability to push the really useful jj state upstream for pulling from any machine seems like a major pain point in jj right now (was one of the major issues referenced in a jujutsu intro guide last year linked on HN)

The same issue hit the initial efforts (that I think were the inspiration for jj) when the mercurial folks, recognising git had kinda taken over the market, experimented in making a mercurial frontend backed by the git db. Limitations like the diff format (mercurial's weave one is one the jj folks also want to add at some point) and the lack of a method for tracking phases (mercurial relies on this for clean history without throwing out commits), and lack of file move/copy tracking.