this post was submitted on 22 Apr 2025
45 points (90.9% liked)

Programming

19760 readers
104 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 !webdev@programming.dev



founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] tux0r@feddit.org -2 points 3 days ago (4 children)

Git is quite powerful on its own with version control, diffs, branches, merging, etc.

All version control systems do that, hence my question.

Git was conceived as a bazaar (because of its use for the Linux kernel), but most projects are more like cathedrals. In my opinion, Git is simply over-engineered for most projects. For projects that you don't want to share with others, even CVS would probably suffice...

Well just speaking for myself, i use git without a forge for personal stuff because i was already familiar with git and it fits my needs. No need to learn another version control system for some basic projects i throw together

[–] mesamunefire@lemmy.world 4 points 3 days ago* (last edited 3 days ago) (1 children)

The biggest thing git does is one person can get one or many branches (AKA version control) on ANY machine. They all act like they are the source of truth. CVS/~~Mercurial~~/etc...all have the issue that they expect to be on one machine as the source of truth. And if that machine ever goes down....

Before git (ya im old), I used a plethora of services like git. There were times back then when a server was down and the history....was just gone.

[–] tux0r@feddit.org 3 points 3 days ago (1 children)

Mercurial is decentralised, there is no single “source of truth”. (Not counting “upstream”, of course.)

[–] mesamunefire@lemmy.world 2 points 3 days ago (1 children)

Huh interesting, maybe it was the way we used it 15-20+ years ago or maybe it changed. No clue. But yes you are correct.

[–] tux0r@feddit.org 4 points 3 days ago

Both Mercurial and Git started around the same time as a replacement for BitKeeper - which also was decentralised.

[–] footfaults@lemmygrad.ml 2 points 2 days ago

CVS would probably suffice…

CVS is awful. Even for local use.

[–] 0101100101@programming.dev 2 points 2 days ago (1 children)

I agree, but subversion is awesome!

[–] tux0r@feddit.org 0 points 2 days ago

It sure is! Glad I'm not alone. :-)