At this point I’m very concerned about the open source industry relying so much on github. You have to remember that any project there can be swept away overnight because it doesn’t fit into the agenca of a large company, for example.

  • aalvare2@lemmy.world
    link
    fedilink
    arrow-up
    11
    ·
    edit-2
    7 hours ago

    What version control software in particular do you find better than git?

    Your point about users often managing git projects via centralization is taken and valid. I was just pointing out that you don’t have to use git that way - different clones can separately develop their own features - so the earlier claim someone made that “git isn’t decentralized” is still wrong, imo.

    • toastal@lemmy.ml
      link
      fedilink
      arrow-up
      1
      ·
      5 minutes ago

      Git is distributed but still centralized. D in DVCS is distributed. Downvoters likely have never used a non-Git VCS, let alone a non-snapshot-based VCS. But fanboys will fanboy.

      Pijul & Darcs are based on Patch Theory which make the conflicts of different patch order a non-issue so long as the apply cleanly (such as working on different ports of the code base). Patch A then patch B ≡ patch B then patch A; this will be a needless merge conflict in Git since the order matters. (& no, Jujutsu isn’t the solution still shackled to the limitations of Git as a back-end while claiming to do what Pijul does—but doesn’t).