• @[email protected]OP
      link
      fedilink
      English
      -18 months ago

      Gitea is so much better than this.

      Is it, though?

      Also, Apache Allura supports revision control services other than Git, which apparently Gitea does not.

      MIT licensed as well.

      Why do you think that is relevant, specially given Apache Allura is released under the Apache license?

      • @[email protected]
        link
        fedilink
        English
        -28 months ago

        Also, Apache Allura supports revision control services other than Git, which apparently Gitea does not.

        Well, do you think its relevant to support anything else other than Git nowadays? Allura might do a bit more on that but Gitea has way more features and the UI is actually decent.

        • @[email protected]OP
          link
          fedilink
          English
          3
          edit-2
          8 months ago

          Well, do you think its relevant to support anything else other than Git nowadays?

          Yes. There are people who prefer Mercurial than Git, and there are quite a lot of projects out there which still use Subversion.

          I really don’t understand the mindset that leads to a belief that a monoculture is good or desirable.

          Allura might do a bit more on that (…)

          Yes, it does.

          (…) but Gitea has way more features and the UI is actually decent.

          That’s debatable, but to each its own.

          Perhaps this could shine some light on the "do you think it’s relevant to suport anything else other than ".

        • @IAm_A_Complete_Idiot
          link
          3
          edit-2
          8 months ago

          Not OP, but personally yes. Every code forge supporting only git just further enforces git’s monopoly on the VCS space. Git isn’t perfect, nor should be treated as perfect.

          The above is probably the reason why so many alternative VCS’s have to cludge themselves onto git’s file format despite likely being better served with their own.

          Interesting new VCS’s, all supporting their own native format as well for various reasons:

          • pijul
          • sapling
          • jujutsu

          Sapling is developed by meta, jujutsu by an engineer at Google. Pijul is not tied to any company and was developed by an academic iirc. If you’re okay with not new:

          • mercurial
          • fossil
          • darcs

          VCS’s are still being itterated on and tooling being super git centric hurts that.

          • @[email protected]
            link
            fedilink
            English
            08 months ago

            Every code forge supporting only git just further enforces git’s monopoly on the VCS space

            So what? You speak about git as if it were some half-proprietary solution aimed at maximizing corporate profit. Git isn’t Chrome.

            Git isn’t perfect, nor should be treated as perfect.

            Yes, and because of that fact it has been evolving over the years.

            VCS’s are still being itterated on and tooling being super git centric hurts that.

            What I see is some resentful people about git - in the same way that happened with SVN and oh well git is objectively better than that.

            • @IAm_A_Complete_Idiot
              link
              3
              edit-2
              8 months ago

              It being objectively better then SVN or CVS doesn’t mean that it’s the best we can do. Git has all sorts of non-ideal behaviors that other VCS’s don’t. Pijul’s data structure for instance is inherently different from git and it can’t be retrofitted on top. Making tooling only support git effectively kills off any potential competitors that could be superior to git.

              One example is pijul specifically let’s you get away from the idea that moving commits between branches changes their identity, because pijul builds a tree of diffs. If two subtrees of diffs are distinct, they can always be applied without changing identity of those diffs. This means “cherry picking” a commit and then merging a commit doesn’t effectively merge that commit twice resulting in a merge conflict.

              That’s one example how one VCS can be better.

              • @[email protected]
                link
                fedilink
                English
                08 months ago

                That’s one example how one VCS can be better.

                What if we just upgrade git to have those features instead of reinventing the wheel?

                • @IAm_A_Complete_Idiot
                  link
                  18 months ago

                  The data model there is fundamentally different. That would break how git would work because operations that worked one way before would now no longer work that way. You’d functionally have rewritten and mapped all the old functionality to new functionality with subtle differences, but at that point is it even git? You have a wrapper with similar but subtly different commands and that’s it. It’s like saying “instead of reinventing functionality by building both ext4 and btrfs, why don’t we just improve ext4”?

                  The two are practically entirely different.