What about git needs replacement?
Open Source
All about open source! Feel free to ask questions, and share news, and interesting stuff!
Useful Links
- Open Source Initiative
- Free Software Foundation
- Electronic Frontier Foundation
- Software Freedom Conservancy
- It's FOSS
- Android FOSS Apps Megathread
Rules
- Posts must be relevant to the open source ideology
- No NSFW content
- No hate speech, bigotry, etc
Related Communities
Community icon from opensource.org, but we are not affiliated with them.
Seems like a historic artefact to me as well. And one of their mentioned points was "no sync via http" which even for 2006 makes me... hesitant.
And their history section ends in 2007, couldn't find a feature comparison in their quick start guide.
Git is far from user friendly but that's a design consideration from a decentralized architecture. Fossil will have the same considerations. People need to learn how to use Git.
The problem is there's only one person who really knows how to use it: Linus.
I'm so fuckin tired of hearing x is user unfriendly, it's not intuitive enough.
Like fuckin yeah. Sometimes you have to actually learn something new to use something new when I first started driving it wasn't user friendly. I had to learn how to do it
git is exactly as unfriendly as a distributed source control system that doesn’t shy away from power user commands needs to be
… sure it’s difficult to comprehend, but yknow what’s worse? getting into a bullshit situation and having broken garbage repos in every other “user friendly” system on the planet
I remember Linus saying in an interview that he'd only really been involved in git for the first 6 months or so and that the other devs had managed it without him since then. This makes sense - Linus's creations aren't successful because he's the only person who understands them, they're successful because there are so many other collaborators on them.
Darcs does not require a central server, and works perfectly in offline mode.
Git can be used that way too. Am I missing something?
No, you are not. People regularly equate Git and GitHub, though.
Darcs came out in 2003—Git in 2005. It was novel at the time compared to the alternatives. Darcs started as alternative to CSV & Subversion, not Git. Unlike Git it works on patches, not snapshots which has advantanges in merge conflicts.
Am I missing something?
No and, in fact, this was (and still is) a selling point of Git over the alternatives (e.g. Subversion) available at the time that required you to "check out" some code and no one else could check out/modify that code while you had it checked out.
dont forget about jujutsu
Since jujutsu is Git-compatible it has very much replaced Git for me and is what I'm using for everything now. Its workflow is so good and miles ahead of Git.
I was trying out Pijul for a while before that and while it has a lot of great ideas and has a lot of potential due to the way its foundations work its interface is way too janky right now and missing features and nothing I've reported or the many changes I've submitted have been fixed/pulled since March. I'd really like it to be good but alas...
Fossil is more like a Jira replacement, and its built by one person with a severe case of NIH. Not necessarily a bad thing but I lived through it with Ubuntu, not really a fan of this philosophy.
I've worked with NIH VCS. Never again lol, I'll stick to git until something else becomes so universally recognized that people en masse start jumping ship.
"NIH"?
I think "Not Invented Here". Meaning he wants to build everything himself from scratch despite there being alternatives he can use instead.
E.g.: Building your own httprequest library rather than using the existing one which is good enough.
That makes sense, thank you.
Not Invented Here, the urge to rebuild the wheel because someone else did it.
Spent 5 minutes on the website and couldn't get a peek at their code... The most fundamental thing, IMO.
fossil is made by the sqlite devs, for development of sqlite. this is not some amateur operation.
also, it's by the sqlite people, so expect the code to be... odd.
it's not the most intuitive interface but there you go: https://fossil-scm.org/home/tree?name=src
Wow C, CSS and JS files at the same level. You don't see this every day
This thread might be the fastest I've ever seen discussion devolve from "that could be interesting" to just incomprehensible screaming.
This seems really cool!! And I love to see alternatives to git. But @[email protected], you need to cool it on the replies. You're making the Fossil community look hostile by association.
I really like the idea of using a relation db to track change history. It removes so much weirdness and quirkiness that git has. You just have regular SQL queries you can use to go through history and ask questions about the state of the repo. I also like that it's immutable so you don't have to worry about things like rebasing and other ways you can fuck up history in git. The problems solved by mucking with history largely go away when you can query the db with a rich syntax.