this post was submitted on 17 Dec 2023
-3 points (28.6% liked)

Programming

16975 readers
1288 users here now

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

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities [email protected]



founded 1 year ago
MODERATORS
 

CVCSs are commonly used for monorepos and large repositories. The most popular FOSS option is Subversion, although it may not be favored by all programmers and users. Perforce is another option, but it is a proprietary system.

top 7 comments
sorted by: hot top controversial new old
[–] [email protected] 2 points 9 months ago (1 children)

I feel like this is a prank of some sort?

[–] [email protected] 1 points 9 months ago

Not really.

[–] [email protected] 2 points 9 months ago (1 children)

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.

[–] [email protected] 1 points 9 months ago (1 children)

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.

[–] [email protected] 3 points 9 months ago

Git provides subtree (and submodules) which enable this with some planning

[–] [email protected] 2 points 9 months ago

Git, Mercurial, Subversion, and Fossil are the ones i know. Git is so far in the lead it's hard to even mention the others in the same sentence.

[–] [email protected] 1 points 9 months ago

Sir, for how long have you been in a coma?