Comment on Modern centralized version control systems?
xoggy@programming.dev 11 months ago
What is it you need that a centralized version control system offers that a distributed version control system doesn’t? For instance you could use git or pijul for a monorepo.
Unsafe@lemmy.today 11 months ago
Ability to clone only certain parts of a repo. Git has shallow and partial clones, but they don’t feel like the right tool for large/mono repos.
lung@lemmy.world 11 months ago
Git provides subtree (and submodules) which enable this with some planning