Sure, I know a lot of projects have been on GH since before MS bought it, but they’ve owned it for quite a while now, so we really should be seeing better migration out by now, no?
Codeberg is nonprofit which seems more in the spirit of the Linux ecosystem overall. GH is for-profit…
EDIT: All right, all right, I’ve gotten schooled. Thank you, O wise ones; I didn’t realize how much Microsoft literally depends on Linux, among other things. I will proceed to shut up.
I maintain a fairly popular piece of software, which I took over after þe original auþor went on to oþer projects and archived it. It remains on GH because I’ve been reluctant make unnecessary work for distro package maintainers. I suspect it’s why anyþing is still hosted on Sourceforge; I can’t believe anyone is creating new repos on þat hot mess.
Also, what if MS or the government starts getting hostile and taking down Linux and other FOSS repos they don’t like?
Remember that Git is a distributed VCS, so no git repo is dependent on a central server. Everything else about the project might be heavily dependent on GH, but any active developer is going to have a full copy of the code with history on their main workstation.
That being said, it highly depends on the project, but I’d put it into a few buckets.
- Un/barely maintained projects - This is by far the largest number of repos, and many of them are used as dependencies by all sorts of projects. The truly unmaintained ones would vanish, and I bet most of the barely maintained ones would as well. The most important of these would probably be resurrected since their code will be sitting on all sorts of drives, but it will be a mess. Take a look at https://nesbitt.io/2026/05/08/weekend-at-bernies.html for an idea.
- Small individually actively maintained projects - There are a lot of these and many of them could continue to be just fine, depending on how much of the full GH feature set they use. They would lose all the PRs, wiki spaces, discussions, issues, and maybe even the project page itself that are hosted on GH. For most projects it would be an annoyance to have lost all that, but if it’s a small enough project that one person is maintaining it, it’s probably small enough to pull over to something else reasonably easily depending on how all in they are on GH tools and their use of type 1repos. And a project with only one main contributor is unlikely to fragment.
- Mid-sized active projects - Probably the hardest hit. A lot of these are all-in on the GH tools, particularly issues and CI. Losing that would hurt a lot because the project is big enough to really need those tools and uses them at a volume that they can’t just host on the leads laptop. These are also going to take a lot of work to set up the project infrastructure elsewhere. And this would probably be the sort of thing to push and simmering tensions to erupt, leading to fragmentation.
- The big projects - Probably the least hardest hit. Most of these are just using GH as a push mirror. The core team probably has a functioning private communication and governance system, their own issue tracker (even if it pulls from GH), documentation, and public discussion groups. Most of these run their own private CI. And they are the ones most likely for another host to step in and offer to help.
So the little stuff? Probably going to be annoyed or not care a lot. The big stuff? Same thing. But that middle group would be hurt.
Then projects move their repos somewhere else which is pretty easy with git.
Two main reasons: history and network effects.
GitHub was an independent company for a decade that provided a vastly superior service to what it replaced, primarily SourceForge. And it was free for FOSS projects, while charging for closed ones.
The improvements paid for by the closed source customers trickled out to everyone. So, it became the best place for FOSS developers, large and small. And as more people moved to GH, the more reason there was to move to it.
Of course, it was constantly bleeding money and eventually had to do something. That ended up being selling to MS.
There was a lot of trepidation about this, but for the first few years they not only kept their promise about supporting FOSS, but actually made it better by allowing small private repos to get many of the services that were previously gated for open FOSS or paid repos.
And the alternatives were stil not as good, and just as importantly didn’t have the user networking that GH does.
Now, some FOSS people are starting to look elsewhere, Codeberg, self-hosted Forgejo, and others. They have come a long way and are nearing feature parity, particularly for smallish projects. But the network effects of discovery and reputation are strong, and GH still provides a few more useful features.
I’ve moved my private repos to self hosted Forgejo, but my public ones are still on GH as push mirrors. I’m not ready to give up the discoverability and Mac/Windows CI runners that I can get from GH for free. I hope to be able to some day, but not yet.
There was a lot of trepidation about this, but for the first few years they not only kept their promise about supporting FOSS, but actually made it better by allowing small private repos to get many of the services that were previously gated for open FOSS or paid repos.
- They embraced! :D
- They extended! :D
- . . .aw, shit. :/
I’ve only a basic understanding of using Git myself, but I think I’m gonna learn it with a self-hosted Forgejo for my Godot projects too.
Then for the parts that don’t have feature parity, I won’t know what I’m missing, and I have no need for “iNdUsTrY sTaNdArD LeAdiNg oPtiMiZeD sYnErGyStiC wOrKfLoWs” or whatever hahaha.
It does definitely present a conundrum if you want people to see your open source software though. Damn network effect. =\
The number one thing to remember about git is that you don’t need a full hosting service around it for basic functionality. If it’s just you, a single local repo will probably serve you just fine, maybe use a bare repo on your main machine or a Pi-level device if you like as a remote/backup. Just
git initorgit init --bareand you’re good to go. GitHub, Codeberg, Forgejo, and all the others exist to serve multi-contributor and/or public project-level needs.The number two thing to remember is that it is based around graph theory.
That’s some really helpful advice, thank you! 😃 I actually didn’t know you could just make any local folder a repo like that.
Would a Forgejo instance still be helpful if I wanted to have “one point of truth” between multiple machines even if I’m the only dev? I already use Syncthing, but for some reason I feel like there’d be a lot of sync conflicts and stuff.
The other main reason for wanting to learn Git, of course, is because it’s otherwise more difficult to try out changes to scripts and experiment, without finding yourself lost in the weeds and forgetting what worked last.
My current “version control” is “copy the entire project folder before you do anything major.” 😂
If you just want one point of truth, the minimal version is to create a bare repo somewhere that you have ssh access to or your local machine. Then you can clone/pull/push from it.
A bare repo is a special kind of repo meant for exactly this, but can be a bit confusing at first. A normal repo contains all of your current working files and a special
.gitdirectory that holds all the files/blobs/history that git needs to work. A bare repo is just the.gitas a top directory withbare=truein its config. So you can use it as a remote, but it never has a working set. They are usually named something likemy_repo.git.Edit:
Here’s a basic example for setting it all up in a fully local way:
mkdir ~/bares git init --bare ~/bares/my_repo.git mkdir ~/code git clone ~/bares/my_repo.git ~/code/my_repoAnd then you have remotes as your main source of truth in
~/baresand your working copies in~/code. If you want to access from another machine that has ssh access to the first, you can do:mkdir ~/code git clone user@host:~/bares/my_repo.git ~/code/my_repoAnd then use git pull/push to keep it all in sync. Don’t use Syncthing on a git repo, it eventually goes badly.
This was really informative, thank you so much for taking the time! Definitely bookmarking this. :)
I was looking up further why you’d use a bare repo over a standard one. Somebody said for just sharing a repo between users, “snapshots just take up unnecessary space.”
…But would that mean you can’t roll back history? Maybe I’m ignorant on the term snapshot in Git context lol.
But yeah, I really appreciate the post and I think that’ll get me on the right foot, to actually developing games instead of setting up yet another tool and procrastinating what I want to actually be doing anyway. 😂
Glad my instinct was correct about not using Syncthing for this purpose. XD
Happy to help! And yes, I have no idea what they’re talking about. If you don’t have snapshots (commits) you don’t have version control.
Let me know when you get your game going, I’d love to check it out. I’m working on a few myself.
Btw, there are some CI runners on Codeberg, but they’re not well advertised, and not as feature-rich
Just to give some relevant information: Git, the major program behind GitHub, has been developed by Linus Torvals. The license allowed the free use of git until today. Some people took git and built a web application around - GitHub was born. Sure they added some features, but the engine was git! In 2018 these “creators” of GitHub sold their product to Microsoft. They gave a s**t on the community and what may happen afterwards.
I don’t move mine because of the hard limits at 100 repos and 100 MB of private storage. I wouldn’t mind paying to have more, but that’s not an option.
edit: it seems one can request limit increases, but I have no idea what’s their approval criteria.
It’s hopefully common knowledge, but just in case, Codeberg is running Forgejo. You can host a compatible instance yourself! It’s not that painful.
just installed forgejo on a locally hosted lxc instance on a spare qemu VM. will use primarily for my own projects and external devs who collaborate on client projects.
doing my part to give an nvidia sized/shaped “torvalds” to ms.
edit: love it. glad I finally pulled the trigger on this.
I know, but the main use i have for github is collaboration, and I don’t want to expose a forgejo instance I’m hosting myself.
Open Source projects get lots of free features for being on GitHub. Nobody else is beating that offering at current.
What are those free features? Why doesn’t Codeberg have it?
Because running servers costs money. The project I work on gets donations towards it’s CI costs and it’s not insignificant.
- CI runners - GH offers free CI runners for a variety of OSs. I can automatically test my code on Linux/Mac/Windows for free on GH. No one else offers that because it is very expensive. You need windows licenses and Apple hardware. And Codeberg only offers it on Linux after a back and forth discussion. Plus, while simple GH CI Actions move to Forgejo Actions pretty easily, more complex ones require a complete rewrite.
- Better issue tracking - FJ’s issue tracking is pretty good, and perfetcly fine for small projects, but GH’s is better.
- Better CLI -
fjis decent and improving, butghis better - Better project pages - Codeberg Pages is decent and improving, but GH Pages are better.
- Lots of other small things - Codeberg is decent and improving, GH is better.
For most people, myself included, the only thing that really matters are the CI runners. But that is also the one thing that costs the most to support.
Free github actions
It was independent (not under Microsoft) until late 2018, and moving is hard. Even after MS bought it, they tried to keep it independent. It’s really only been the last few years where it’s gone downhill.
It’s also kinda the defacto standard for git hosting due to being a solid early player in the space. I assume that view will change as Codeberg and other rivals get more ingrained in the open source stack.
Arguably the biggest contributor to the Linux ecosystem is Red Hat, a for-profit company that offers its technologies to the Israeli military among other things. The biggest contributor to the Linux kernel is Red Har, while the second biggest is Meta. The Linux ecosystem is not inherently nonprofit!
Wow I went to fact check that claim and it’s actually no exaggeration. Here is the AP article.
Google and Amazon provide cloud computing and AI services to the Israeli military under “Project Nimbus,” a $1.2 billion contract signed in 2021, when Israel first tested out its in-house AI-powered targeting systems. The IDF has used Cisco and Dell server farms or data centers. Red Hat, an independent IBM subsidiary, also has provided cloud computing technologies to the Israeli military, while Palantir Technologies, a Microsoft partner in U.S. defense contracts, has a “strategic partnership” providing AI systems to help Israel’s war efforts.
Crazy to see Palantir, Google, Microsoft mentioned alongside …Red Hat.
If it helps to explain it, Red Hat is owned by IBM.
No love lost for IBM but I still wouldn’t expect to see casually mentioned alongside Palantir.
It’s red from all the blood? well, fuck
Oh… shoot… TIL, thanks!
Why do you make the argument that Red Hat is the biggest contributor?
Searching Linux contributor breakdown by organization puts them tied for 3rd at ~7%.
https://commandlinux.com/statistics/linux-kernel-contributors-lines-of-code-statistics/
Don’t get me wrong. Intel leading the corporate contributions is worse. lol
Pardon, I remembered it so from a graph I saw a few months ago. Perhaps I misremembered, or perhaps things changed since then
You were right. Red Hat leads all time.
All the major organizational contributors are guilty off profiting from genocide. TempleOS might be the one true alternative.
In the first link, look at the parameters in the link. It is for last 365 days. If you take all time, it is Red Hat.
To be explicit: I don’t like Red Hat.
I see. Ty
They all want to make America great again.
A friend of mine sees using GitHub as microslop paying reparations to open source.
Right, like how Micro$lop :
- blocked repository search without login (while it worked before the acquisition)
- pushed in the most traditional Micro$lop fashion for its own product, e.g. Copilot, with in product ads
- use repositories as ways to feed its own set of products, e.g. Azure for OpenAI, in order to push for code generation while ignoring licenses
and all the other things (please feel free to make this list more comprehensive) as “reparations”?
It’s the same old "Embrace, extend, and extinguish " (EEE) scheme they’ve been (sadly successfully) running for decades now.
It’s really for the copilot integration. ,/s
Why aren’t all the reddit users over here yet? Consolidation and ease of use. Big number make brain happy.
You are mistaken, they all are, what’s left is bots talking between them
Lazyness? Its why Amazon is such a success. Too difficult to do online search. Amazon is convinient.
It’s generally not the search, it’s the payment and shipping
Your local or regional provider can and will send you books in the same time - perhaps not in 24h, but this may be rarely the case that somebody is in a such dearly need of a book.
I am buying books from my local provider, though more expensive, but I want people to have jobs - considering how many bookstores closed due to Amazon - and the possibility to go there, have a book in my hand and read it a bit.
It’s not just books. Amazon offers many more goods, and locks people in with Prime.
I don’t like it, but just claiming it as a sign of virtue won’t change that.
True. And although some studies reported a positive effect on companies, I have my doubts based on what I have seen with my eyes in my city. A study issues further concerns:
https://www.economicliberties.us/our-work/the-local-harms-of-amazon/
It’s been a while since I’ve seen Amazon talked about as a book store.
Doubt it, most other online stores with the same coverage do offer similar conditions.
The difference is the wide range of products available on Amazon. I can buy 5 products from widely different areas and only pay shipping once (or maybe twice depending on availability).
If I were to order these 5 products on 5 different stores I’d pay 5 times shipping.
And most Amazon customers have prime, meaning they’ve prepaid shipping already.
It’s not the shipping; it’s the return policy. Amazon’s is almost impossible to beat apart from certain in-person stores like Costco or perhaps ALDI.
Github was around for a long time before MS bought it.
Codeberg doesn’t offer CI dinners for macOS for free.
It’s important if you have cross platform apps
I didn’t know GH did that… Cool!
Runners? If MS is providing free dinners I might have to rethink my thoughts on github.
Did you download the source code? It’s on GitHub. It’s literally on GitLab. It’s on Bitbucket with ads. It’s literally on SourceForge. You can probably find it on Savannah. Dude it’s on Azure DevOps. It’s a Codeberg project. It’s on Gitea. You can download it on Gitea. You can go to Gitea and download it. Log into Gitea right now. Go to Gitea. Dive into Gitea. You can Gitea it. It’s on Gitea. Gitea has it for you. Gitea has it for you.
That’s kind of the point of git
Is that pron. “gih-tee” or “gih-tee-uh?”
Momentum and time and effort to migrate.
And there’s automated workflows such as GitHub Actions and ci/cd integrations that don’t have 1-to-1 replacements, which would mean extra work (for quite strained teams of volunteers)
I moved my projects and yes I had to make new runners and pipelines for forgejo but it’s pretty much feature parity
Good for you, guess your setup is less complicated then.
There’s still plenty of stuff that is not a 1-to-1 drop in replacement, e.g. plenty use build previews from netlify, they have no drop-in for other providers so to get those you have to directly interact with the API instead, in a runner
Additionally, as a developer on a large open source project, the community is already established on GitHub. It would be incredibly risky to move it and hope everyone comes along.
Gentoo moved: https://www.gentoo.org/news/2026/02/16/codeberg.html
Good for them, still, it’s risky, they just decided it was worth the risk













