this post was submitted on 08 Dec 2023
1472 points (98.3% liked)
Programmer Humor
19480 readers
1809 users here now
Welcome to Programmer Humor!
This is a place where you can post jokes, memes, humor, etc. related to programming!
For sharing awful code theres also Programming Horror.
Rules
- Keep content in english
- No advertisements
- Posts must be related to programming or programmer topics
founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
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.
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.