this post was submitted on 02 Jul 2023
22 points (100.0% liked)
Ask Experienced Devs
21 readers
1 users here now
Icon base by Delapouite under CC BY 3.0 with modifications to add a gradient
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
Mercurial used to be fairly popular around the time when people were still migrating away from Subversion. Mercurial support used to be Bitbucket's differentiating feature, but apparently they dropped support a few years ago. That's not a great sign for current popularity.
IIRC Mercurial doesn't support "lightweight" branches - if you wanted to create a branch you had to create a new repo clone. I think there was some rebasing-type stuff that you just couldn't do. There are some ways it is simpler than git; but I found the Mercurial workflow quite confusing.
There was also Darcs which used a "theory of patches" that could merge without conflicts in some situations other systems couldn't. In exchange it eschewed the idea that every clone would see history in the same order. It didn't catch on because it turned out that its merge algorithm would get really slow in not-so-uncommon situations.