this post was submitted on 04 Dec 2024
176 points (91.9% liked)

Open Source

31654 readers
100 users here now

All about open source! Feel free to ask questions, and share news, and interesting stuff!

Useful Links

Rules

Related Communities

Community icon from opensource.org, but we are not affiliated with them.

founded 5 years ago
MODERATORS
 

I would like to introduce you lovely OpenSource Lovers to a GIT-Alternative called FOSSIL that I also stumbled upon because of this Blog. It's basically opensource Github-in-a-box which means it's an SCM with:

  • Bug-tracker
  • Ticketting-system
  • Forum
  • Wiki-system
  • even a Chat-functionality
  • Has built-in GUI
  • Also has a Web-Server
  • Self-Hostable like Gitea/Forgejo

& the best part it's all in ONE STANDALONE FILE!!! which is extremely lightweight which you can copy to your $PATH & works even in crappy internet. how cool is that!!

However this tool supports a completely different style of development in FOSS called the "Cathedral-Style" whereas GIT suports a "Bazaar-Style" The person behind Fossil is the creator of SQLite, Dr.Richard Hipp & they even made other projects to support Fossil like a PIC-Like language called PikChr Well just in case; here's a list of difference between Git vs Fossil & guess what!! they even have a hosting service called CHISEL

Listen; Just check it out & use it for fun in your spare time even with the flaws it has (& Try out Darcs & Pijul as well)

you are viewing a single comment's thread
view the rest of the comments
[–] nimpnin@sopuli.xyz 23 points 2 weeks ago (4 children)

Darcs does not require a central server, and works perfectly in offline mode.

Git can be used that way too. Am I missing something?

[–] einkorn@feddit.org 27 points 2 weeks ago

No, you are not. People regularly equate Git and GitHub, though.

[–] PropaGandalf@lemmy.world 10 points 2 weeks ago (1 children)

no, this is exactly what git does

[–] toastal@lemmy.ml 5 points 1 week ago* (last edited 1 week ago) (1 children)

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.

[–] uis@lemm.ee 2 points 1 week ago* (last edited 1 week ago) (1 children)

Git uses ~~mergetools~~, which do whatever you make them to. Patches can be created from snapshots, but snapshots are not guaranteed to be creatable from patches - you might not have original state.

EDIT: it uses merge drivers.

[–] toastal@lemmy.ml 2 points 1 week ago (1 children)

Patch Theory operates under the premise that patches commute & order should not matter until there is a conflict. Git will throw fits if you pull in a patch at the wrong order giving you a different snapshot.

[–] uis@lemm.ee 1 points 1 week ago

Specific merge tool can throw fits. Git doesn't care about specifics of how merge operation is done, it just tells to merge driver to merge three files(A, B and common ancestor) and stops if driver reports an error.

Also to correct myself: merge driver, not mergetool.

[–] PHLAK@lemmy.world 4 points 1 week ago* (last edited 1 week ago)

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.