Hacker News new | ask | show | jobs
by zippzom 2939 days ago
Git is already open source. What does this do differently than Git?
3 comments

fossil doesn't only version control the source code. other project-meta like wiki and issues are also replicated when you clone a fossil repo.
Why shouldn't this be built on top of git?
Shouldn't? Hasn't been.
Why would I want that?
git is decentralised. github issues & merge-requests are not.

Say you have a project hosted on github, pretend github has been purchased by a scary-company, you might imagine you could move your repository elsewhere. You can, but suddenly your issues need to be imported/migrated too.

If you had a fossil-host instead? You could migrate your repository and your issues all at once, and nobody would care.

(Disclaimer: I use github for public projects, and self-hosted gitbucket for private stuff. I don't care that github has changed ownership.)

I don't use fossil, but I have fantasized about keeping docs and issues in version control alongside the code.

My organization has churned through several different issue trackers in the last few years. And a lot of that old data is just gone; project owners never bothered pulling Fogbugz tickets into Phabricator or never pulled Phabricator tasks into JIRA. If we had issue tracking that lived alongside the source code in version control, then the underlying data would last as long as the code did.

Issues are tricky, but docs are easy to store in git. In fact, I thought that was standard practice for most folks. What documentation tools do you use that prevent using git?
Note that not long after writing that, he moved his projects to github because a (since-fixed) bug in fossil caused data-loss.
If you actually read through the discussion on the mailing list, what Zed did (as I recall it from when this was news years ago) was screw up an operation, run into a bug, panic and start hammering on the repo to try to undo the problem that arose, and basically destroy the repo's ability to roll back what he did.
That sounds right to me, though to be fair, I was the one who screwed up the operation, not Zed. It was my very first time using Fossil.
OP is confusing Git with Github.