Difference between Github, Gitlab, Forgejo ?
-
If you are a developer then no difference if you're a scrum master then you need to gtfo
-
Pretty sure codeberg.org uses forgejo under the hood.
Another very solid option for self hosting is just adding a git user to a server with git installed, initiate bare repositories there, then talk to them with [email protected]:repo-name
-
Alternative experience here: I have managed 7 GitLab installs for the past 12 years, two of these having ~300 users and ~1000 repositories, and I update monthly on average. I have only had one update break in all that time, and it was because of starting another upgrade step without waiting for all of the background migrations to complete. GitLab support got us sorted out within a couple of hours. A great experience overall.
There is a complexity floor, however. I use GitLab personally because of its CI/CD implementation. Upgrading it requires some care because it's a large and complex project. You have to read the errata and use the upgrade planner.
For small installations with a few users, and if there is no CI/CD preference, Forejo is probably the better choice for maintenance simplicity.
-
Can Forgejo do ci/cd pipelines by chance?
-
Yes, but haven't tried yet
-
Gitlab pipelines are super nice to use and integrate nicely with merge requests.
I like the Github UI, clean and simple, but down like what comes along with it…
Interested in self hosting forejo but I’m mostly coding at work these days.
-
Yes.
-
In the same order you asked:
Safe, easy to use, polished and reliable ; Someone else tried to emulate the first one success ; Poorly executed open-source alternative you can selfhost.
All of them speak the git and are essentially web UIs made to manage it and the creation of repositories and setting up permissions.
-
Git is the underlying code management and version control system. It can be used directly, and also forms the backend to a number of other systems.
Code "forges" are platforms which integrate a version control system (like git), a code repository (a file server), and front end utilities.
Some git forges are open source, others are proprietary. Certainly with the open source ones, but also with the proprietary ones in some cases, you can either self-host or use a hosted service.
GitHub is a proprietary forge, X GitHub.com is the company's fully hosted service. They're now owned by Microsoft.
Gitlab is an open source forge. Gitlab.com offers a hosted service, but many projects self-host.
Forgejo is a fork of Gitea which is a fork of Gogs. These are all also open source. As far as I know, neither Forgejo nor Gogs offer a hosted version, but Gitea does.
A few other notable forges include GNU Savannah (open source), Bitbucket (proprietary), Sourceforge (proprietary), Launchpad (open source), Allura (open source).
At the end of the day, they all do the same thing. They have different feature lists (especially around some of the project management and user interaction side), different user interfaces (some are shinier and more modern, others more minimalist), and different communities and support models. You choose that one that works best for your needs.
GitHub is probably the most feature-rich (and/or bloated) of them. GitLab is competing in the same space, and self-hosted GitLab seems to be something of a sweet spot for many projects that want a premium experience without needing to use a proprietary Microsoft product. I don't have much experience with Forgejo or Gitea. The rest tend to exist in their niches.
-
For something super lightweight you can try https://pr.pico.sh/
-
GitLab is open core, not open source. It is also a publicly-traded company in the US that does have shareholder obligations—which should cause some sort of long-term hesitation. It does have a better CI/CD system than the Microsoft product & the community edition can be self-hosted.
-
Note that Git also isn’t the only distributed version control system (DVCS); there maybe be other alternatives out there for you not just in code forge but the system underneath it too.
-
As far as I know, neither Forgejo nor Gogs offer a hosted version, but Gitea does.
Forgejo hosted version is https://codeberg.org/ which is my code forge of choice. I also have a self hosted private forgejo mirror of my public forgejo repos.
-
gittea is also a company now, forgejo is open and free, trully free
other than codeberg disroot has been running forgejo too
I wouldn't want to use anything but forgejo -
Truly free… yet in its fork of Gitea it is copying more Microsoft GitHub features like Action YAML spaghetti instead of offering an improvement. Instead of being a better offering than Microsoft, they are cloning even more features where it is even more of a hard sell IMO by not offering anything new in the experience.
-
Even Codeberg is not running Forgejo Actions, which is saying something (it's super janky, many things just don't work)
-
Could you please elaborate on why one should use Codeberg for private repos if one isn't a dev?
-
The difference with a small group of devs writing code and offering it free and corporate thugs treating coders like sponges to produce code is the lack of resources can be understood and forgiven.
Take a project like brave-nightly (browser fork of glugle-elechrom) there are 3-5-8 new releases a day, 8-6 Pacific US time, when they go home on Fri. the next release is Monday afternoon, the "free" coders usually begin work Friday night and end Monday at dawn!Sure, corp.XYZ sends them an offer one day and buys their work and even offers them incentives to work for them, then it all goes down hill!
It ends up being as nasty racist and ethnocentric as kernel.org.com - us state dept fed and controlled
-
I'm using gitea to host my code and store issues
I'm combining this with jenkins for CI/CD
push commit in gitea -> jenkins autostarts build/deploy -> commit status (build/deploy failed/ok) visible in gitea
All selfhosted with portainer and docker images on a hetzner server in finland but you can easily do it on a home-server toopretty happy with this setup - I might have a look at forgejo iso gitea as it's more open source and I wasn't aware of it when I chose gitea a year ago
then again I'm pretty happy with my setup now
-
There is no difference in core of those services, all of them are visual interfaces for file versioning software called git. You can easily use git without any of these services. If you're starting to explore those technologies I personally recommend getting used to git and ssh. You can read more here on how to use git and ssh https://git-scm.com/book/en/v2/Git-on-the-Server-Getting-Git-on-a-Server
Answers:
- Github was initially written in ruby.
- The difference is memory usage, complexity of depoyment, compatibility with github features, maintenence and community support.
- Self hosting depends on various factors like usage preferences, number of users, business requirements, budget, hosting machine processing power, and amount of time you want to spend for maintenence and learning the platform.