This repository has been moved to Codeberg:
https://codeberg.org/michael-simons/sport
From Codebergs "About" page:
Codeberg is a non-profit, community-led effort that provides Git hosting and other services for free and open source projects.
Codeberg is maintained by the non-profit organization Codeberg e.V., based in Berlin, Germany. For us, supporting the commons comes first.
Why the move after more than ten years? GitHub has been acquired by Microsoft way back in 2018, but lost its independence completely in August 2025. Moving a code hosting site close to a "CoreAI" team gives an idea about the future direction of GitHub and I am not happy with that.
I want to have agency over my Free and Open Source projects and not feed the literal machine with it. If you can, consider supporting the non-profit behind Codeberg, too: join.codeberg.org.
In case you also want to move a repository, here's how I moved this repository:
- Create a new local and orphaned branch:
git checkout --orphan gone
- Delete all content:
git rm -r --cached . && git clean -df .
- Added this
README.md
- Push the
gone
branch over the oldmain
branch at GitHub:git push -u origin gone:main --force
- Checkout
main
again - Change origin
git remote set-url origin [email protected]:michael-simons/sport.git
After that I archived the GitHub repository, effectively setting it to read-only and updated the description accordingly.
This was a public repository. Deleting it from GitHub will cause the following to happen:
When you delete a public repository, the oldest, active public fork is chosen to be the new upstream repository. All other repositories are forked off of this new upstream and subsequent pull requests go to this new upstream repository.
Source: Deleting a public repository
I don't want this to happen.