• 4onen@lemmy.world
    link
    fedilink
    arrow-up
    14
    arrow-down
    32
    ·
    7 months ago

    Git is a program your computer runs to have a single folder have source control. It does all the hashing and commit chaining that you’re used to, branches, that sort of thing.

    But if you want it to be on more than one computer, you need to do this complicated “Bare” repository setup on a server computer to do the “git push” stuff you’re used to.

    Most people, being too lazy to learn bare repositories and the general sysadmin necessary to host a git server themselves, instead just use Microsoft’s Github which is a web interface for the server use of git the program.

    Microsoft then proceeded with their classic mantra of “Embrace, Extend, Extinguish” and started slapping on more and more features that are incompatible with any other git hosting service: actions, CI, their web VSCode instances, etc. That’s all in GitHub too. But it’s all just web interface for git the open source program, at the end of the day.

    • xmunk@sh.itjust.works
      link
      fedilink
      arrow-up
      50
      arrow-down
      1
      ·
      7 months ago

      I like shitting on M$FT as much as the next bloke but if you believe Github started being evil when Microsoft entered the picture then your memory is pretty awful.

      From it’s inception github pushed proprietary tagging and issue numbers that have no meaning outside their platform and a difficult export process to trap projects - especially commercial ones - on their platform.

      • Phen@lemmy.eco.br
        link
        fedilink
        arrow-up
        7
        ·
        edit-2
        7 months ago

        I remember moving a project from github to gitlab years ago (before MS) and the process to move all the non-git data from github was just as easy as moving the git repo itself. Thanks to gitlab’s efforts perhaps, but I didn’t expect github to have made it difficult for them based on the experience I ended up having.

      • 4onen@lemmy.world
        link
        fedilink
        arrow-up
        2
        arrow-down
        3
        ·
        7 months ago

        I was being diplomatic because I was uncertain how people felt about the issue and PR tracking, considering how Bitbucket and GitLab replicate it. Felt simpler to focus on the since-M$ft egregious steps.

    • rtxn@lemmy.world
      link
      fedilink
      English
      arrow-up
      14
      ·
      7 months ago

      GitHub was independent from Microsoft for a long time, and was only acquired in 2018.

    • Archr@lemmy.world
      link
      fedilink
      arrow-up
      7
      ·
      7 months ago

      Just a few comments on this. Most people aren’t “lazy”, they just understand that the effort to run a bare repository is greater than basically any other solution. Also your incompatible features list implies that other git repo sites (gitlab, codecommit, bitbucket, etc) don’t have their own form of proprietary stuff that you have to learn. In fact the newest version of gitlab actually changes their web ide into vscode web, because of the obvious, it is much better than their old ide.