• Ugly Bob
      link
      fedilink
      3811 months ago

      It’s called git. It’s been distributed from day 1. GitHub was an attempt to centralize it.

      • @gomp@lemmy.ml
        link
        fedilink
        3011 months ago

        Yeah… does git have issue tracking? actions? C’mon: it’s not like github & co. are just git.

        • @herrvogel@lemmy.world
          link
          fedilink
          1811 months ago

          It doesn’t have discussions, it doesn’t offer pull request management with commented/annotated code reviews, it doesn’t have built-in ssh and key management features, no workflows, no authorization tools of any kind…

          In short I find the “just use git itself lmao” to be an exceedingly weird thing to say and I find it even weirder that it gets said as often as it does and it gets upvoted so much. Git by itself is not very useful at all if there are more than one a half people working on the same code.

          • @steeznson@lemmy.world
            link
            fedilink
            011 months ago

            A server hosting a copy of the repo, git send-email, a mailing list and a bugzilla instance is all that an open source project really needs.

            The advantage of github/gitlab et al. is that it merges all of the above functionality to one place, however it’s not absolutely essential. Git itself is extremely versatile and can be as useful as you are want it to be if you put in the time to learn it.

            • @corsicanguppy@lemmy.ca
              link
              fedilink
              English
              511 months ago

              Git itself is extremely versatile and can be as useful as you are want it to be if you put in the time to learn it.

              I love how much spare time you have to learn and maintain your infrastructure unnecessarily instead of working on the code. It’s like being a bus driver by day, and mechanic all night.

              • @steeznson@lemmy.world
                link
                fedilink
                111 months ago

                Depends how interested you are in the infrastructure I suppose. Obviously it’s not essential for any project. I see a few that have both self hosted resources and additionally a Github mirror.

                An advantage to the “old school” approach is that you don’t end up tied into a large SAAS platform like Github.

        • The Cuuuuube
          link
          fedilink
          English
          211 months ago

          I’m glad I get to introduce you to it! The biggest instance is Codeberg. Fediverse integration isn’t there yet but the general consensus is its coming very soon since that’s Codeberg’s main focus for the forgejo project right now

      • The Cuuuuube
        link
        fedilink
        English
        3
        edit-2
        11 months ago

        Piping curl into sh in install instructions is a fast track to me not taking a project seriously

        • @gomp@lemmy.ml
          link
          fedilink
          211 months ago

          I’ve heard this over and over… what’s the difference security-wise between sudo running some install script and sudo installing a .deb (or whatever package format) ?

          • The Cuuuuube
            link
            fedilink
            English
            111 months ago

            A deb is just a zip file that gets unpacked to where your binaries go. A shell script you curl pipe into shell could contain literally any instructions

            • @gomp@lemmy.ml
              link
              fedilink
              1
              edit-2
              11 months ago

              Binary packages have scripts (IIRC for .deb they are preinst/postinst to be run before/after installation and prerm/postrm before/after removal) that are run as root.

              BTW the “unzip” part is also run as root, and a binary package can typically place stuff anywhere in your system (that’s their job after all)… even if you used literal zip files they could still install a script in ways that would cause the OS to execute it.

              • The Cuuuuube
                link
                fedilink
                English
                111 months ago

                Yeah I’m over simplifying on purpose here. The bottom line is piping into sh is dangerous