-16
Modern centralized version control systems?
(lemmy.today)
Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!
Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.
Hope you enjoy the instance!
Rules
Follow the wormhole through a path of communities !webdev@programming.dev
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.
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.
Git provides subtree (and submodules) which enable this with some planning