Ask HN: Due to spam on GitHub, what platforms can I move my projects?
31–40 of 67 posts
Re: Ask HN: Due to spam on GitHub, what platforms can I move my projects?
#32Git is pretty simple to host yourself. For literally decades I've used git and gitolite to host git for me and a revolving team of developers. But if you want it to be public though where anyone can access/fork it then you have to deal with "spam".
How do you deal with bot traffic and traffic from AI that's trying to get training data from your codebase
Re: Ask HN: Due to spam on GitHub, what platforms can I move my projects?
#33Earlier quoted context omitted.
I'm not familiar with git, but can you post a read-only version publicly so others can still access all the commit history but not be subjected to pull requests?
If you have somewhere to host it you can go with https://forgejo.org/ and have control over everything.
Re: Ask HN: Due to spam on GitHub, what platforms can I move my projects?
#34Codeberg.org is really great. Also I recommend self-hosting Gitea for private projects and backing-up public projects
Re: Ask HN: Due to spam on GitHub, what platforms can I move my projects?
#35Re: Ask HN: Due to spam on GitHub, what platforms can I move my projects?
#36Re: Ask HN: Due to spam on GitHub, what platforms can I move my projects?
#37This is evidently not a popular opinion, but git repositories don’t need to be hosted on any platform. Your local repo is a complete copy and can be pulled and pushed from and to. If you really want a backup or “source of truth” copy, you can clone it anywhere you have shell access. We make so many simple things hard unnecessarily.
Re: Ask HN: Due to spam on GitHub, what platforms can I move my projects?
#38Git is pretty simple to host yourself. For literally decades I've used git and gitolite to host git for me and a revolving team of developers. But if you want it to be public though where anyone can access/fork it then you have to deal with "spam".
How do you deal with bot traffic and traffic from AI that's trying to get training data from your codebase
Re: Ask HN: Due to spam on GitHub, what platforms can I move my projects?
#39Re: Ask HN: Due to spam on GitHub, what platforms can I move my projects?
#40Related question, is there a web-based self-hosted git replacement that's _light-weight_ (i.e. resilient to scraping)? Should have things like file view, file browser, etc but is not taxing on the server.