https://tangled.org ! Founder/CEO here. We're a new forge building things from the ground up, and are fully federated -- you can host your git repos on your own infra, along with the CI runners. We've also got a pretty neat set of features (if I may say so myself): stacked PRs, Nix-based CI (if you want it), and a fully open protocol ( https://atproto.com ) to for you and your agents. Happy to answer any questions.
Ask HN: Alternatives to GitHub
301–310 of 468 posts
Re: Ask HN: Alternatives to GitHub
#302Re: Ask HN: Alternatives to GitHub
#303Earlier quoted context omitted.
I feel like you just directly contradicted yourself so there must be some nuance I am missing. Or is the key word "mostly"? Like I can use LLMs to help the work but still have to type most of the code myself? I have not written more than maybe 10 lines of code in the last year so it seems I am prohibited from hosting on codeberg? Or is the key word "share" and that's somehow different from "host"?
I suspect the fidelity of your comment to your actual level of confusion is low. In any case, if you're really this confused by the information provided earlier, then the chances aren't good that there's anything that anyone could say to get you unconfused.
Good luck with that.
Re: Ask HN: Alternatives to GitHub
#304Re: Ask HN: Alternatives to GitHub
#305Re: Ask HN: Alternatives to GitHub
#306I bet you could do it with like 10 prompts.
Re: Ask HN: Alternatives to GitHub
#307Earlier quoted context omitted.
Literally the first paragraph: > Forgejo is self-hostable free software for software development, built on top of Git. Codeberg is powered by Forgejo, which is in turn a hard-fork of Gitea. Compared to Codeberg, Forgejo is not one service, but free software to help you build your own. Everyone can install their own Forgejo instance to host their own projects. There are also public Forgejo instances as well as Codeber…
[flagged]
Or from another angle, how would you say it more concisely? Preferably without using AI to summarise.
Re: Ask HN: Alternatives to GitHub
#308I migrated everything to codeberg several months ago (and created an annual donation schedule). I was never a big fan of github but what ultimately pushed me to ditch it was the way github was shoving copilot/chatgpt in my face without me ever asking. Codeberg has a clear stance on that and it's a stance I can totally get behind. In addition I spun up forgejo at a server at home for very critical stuff and it's aweso…
Note: If you use any form of AI-assisted coding tools, your project breaks Codeberg TOS
Re: Ask HN: Alternatives to GitHub
#309https://reticulum.network/manual/git.html
I don't think moving to another forge is much of a solution, at most it is buying a bit of time. We've seen this happen with SourceForge, with Tigris, and now with GitHub.
Re: Ask HN: Alternatives to GitHub
#310Earlier quoted context omitted.
> 4. Do you just want to host repositories? an ssh connection and git --bare init on your ssh accessible server works just fine
It can be as brief as: ssh server git --bare init myrepo.git git clone server:myrepo.git
or if your local repo existed first:
git remote add server server:myrepo.git
git push -u server @