Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Gitorious has been around longer and the two sites seem to cover the same ground, yet a quick Google Fight shows Github almost two orders of magnitude higher.

Is there a larger distinction that I'm not aware of?

share|improve this question
1  
By the way.. i would not go with those results. Check this out: googlefight.com/… Still, github rocks. :) – Shripad K Jul 2 '10 at 2:42
4  
Google: 543,000,000 results Orkut: 27,100,000 results. Looks reasonable to me. – Caleb Thompson Jul 8 '10 at 20:49
14  
This should clear up all your questions: octodex.github.com – styfle Feb 17 '12 at 9:11
8  
another example of question that's useful to programmers that doesn't comply with the SO rules that's closed... – Edwin Yip Mar 30 '12 at 5:56
2  
Should move it to programmers.stackexchange.com – hamstar Apr 30 '12 at 6:29
show 5 more comments

closed as not constructive by Tim Post Feb 9 '11 at 10:37

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

17 Answers

up vote 100 down vote accepted

At the moment it seems that GitHub has more features, both as a project management site (Wikis, Integration with Bugtrackers), a social networking site and a Git hosting site (all the cool graphs). There's also the fact that they rewrote the Git server in Erlang and the Git client in Ruby, which gives them much more stability than the typical commandline wrappers that other Rails-based Git repository interfaces (including Gitorious) use.

Community-driven open-source projects need to reach a certain critical mass to achieve a high velocity. The Linux kernel is likely one of the fastest developing software projects ever, but it has 500 regular contributors, about 3000 overall. Gitorious is nowhere near that.

GitHub, on the other hand, has now over 180 paid employees working on it. Four full-time developers, that's what? 120 hours a week? Assuming that the average open-source developer has time to invest 2 hours on the weekend, that means that Gitorious would need 60 developers just to keep up with the pace of GitHub, more than that if Gitorious wants to overtake GitHub. Once they reach that critical mass, Gitorious should just blast right past GitHub in terms of features, but until then GitHub has the upper hand.

share|improve this answer
8  
The source code for GitHub itself, as well as egitd, the Erlang implementation of git-daemon, are proprietary – that's the main difference between GitHub and Gitorious. Grit, the Ruby re-implementation of Git is Open Source, and hosted on GitHub, of course. – Jörg W Mittag Mar 16 '09 at 6:17
4  
BTW: Grit is a partial re-implementation of Git, not just a Git binding. That's what makes it so cool: you don't have to put up with a C API with Ruby syntax, like you have with the SWIG-generated Subversion bindings – you get a real Ruby API. – Jörg W Mittag Mar 16 '09 at 6:19
51  
Actually Gitorious would need more than 60 developers as two hours of time is not equivalent to one fourth the work of a focussed 8 hour day. Also, while Gitorious might start to get more features than GitHub at some point, GitHub has a focussed cohesive team building a product. More features won't necessarily equate to higher levels of popularity and adoption. – Jeff Thompson Sep 3 '09 at 17:12
4  
About egitd: "This software was in production use at github.com for a short time until it became obvious that the communications model was flawed". Source: github.com/mojombo/egitd#readme – sastanin Feb 8 '11 at 16:26
5  
Some of GitHub's "features" are essentially fake. For instance, they claim to have a bug tracking system, and technically they do have one ... but that system doesn't even let you attach a file! So take those claims of "GitHub has more features" with a grain of salt ... – machineghost Jan 11 '12 at 23:12
show 6 more comments

OK, there's a bit of FUD being posted here which is just a result of pure ignorance, so pardon the slightly harsh tone.

As far as I know, Gitorious uses mostly the same library as github (Grit) for most things git related. We even made it faster in some cases since there where some suboptimal code in there. As far as their publically published changes to Grit go, these haven't been integrated unfortunately (I even registered on github to make them available, imagine that!). And don't think that parts of it being in pure Ruby is an advantage, in particular binary search on the commit log is a painful exercise in the slowness of ruby and not something you'd want to pursue.

Last I heard they abandoned their erlang git server, due to some design flaws in it so I guess it didn't follow a fork+exec model. Speaking of which, if you actually bothered to read the source a bit to Gitorious you'd see that we run a git-daemon written in Ruby. That's ok though, since it's a fork+exec server, meaning that there's only about 80 milliseconds spent in Ruby land before it forks and execs the git-upload-pack command (and passes the socket handles over to that obviously, as per normal fork semantics).

So please Jörg, don't just blindly assume things because you may have heard some things, or just make up stuff as go. The advantage of Gitorious is that you don't even have to ponder in the first place, evidence is just a git clone away..

Anyway, I know this thread is old but someone showed it to and I just had to reply, a lot has happened and changed, for the better, with Gitorious over the past 5 months.

share|improve this answer
5  
I was reading the following link, and many people (in comments) mention the existence of merge requests as a cool gitorious features: blogs.gentoo.org/nightmorph/2010/02/16/gitorious-or-github And many big companies choose Gitorious because it's open source and the company behind it offers to create new features upon request. – Blaisorblade Aug 12 '10 at 22:38
On another issue: is git-daemon so bad that rewriting it in Ruby, even with fork+exec rather than prefork (like Apache), is an improvement? – Blaisorblade Aug 12 '10 at 22:39
@Blaisorblade: I think the point is that service providers need to integrate the daemon into their internal structure, which probably looks much different from the "expected" environment for the rather simple git-daemon. – David Schmitt Oct 18 '10 at 9:57

I think it's refreshing that Gitorious and Github do things differently:

  • Github has a person-oriented focus, while Gitorious focuses on projects and teams
  • Github offers hosting of closed source projects, while Gitorious is all FOSS
  • Github's business model is based on people paying to host their private repositories, while Gitorious' business model is based on organizations wanting to involve their users in FOSS projects

I really wouldn't want my FOSS project to be hosted on a site that is itself proprietary software, but I realize that's my personal opinion.

share|improve this answer
13  
Nice to see someone who doesn't allow their personal opinion to get in the way of a reasoned assessment of the state of the world :D – naught101 Jan 28 '11 at 4:12
3  
Nice summary of the essential differences between the two! – SamB Aug 16 '11 at 18:51
Gitorious is planning a "private repository" effort. This will probably be enabled only if you install the application on your machine, as the service only hosts opensource software. - blog.gitorious.org/2011/12/08/private-repositories/ – Gabriel Mazetto Dec 12 '11 at 21:19

It's simple. Fewer letters in their domain name!

share|improve this answer
17  
This is probably a really sensible response actually. +1 – Owen Jul 7 '10 at 20:50
7  
gitorious is a bit awkward to type, perhaps they should register gitor.org as well :P – Jacob Stanley Aug 3 '10 at 7:56
9  
It's sounds flippant but it's really true. I mean github is easy to spell and remember but gitiorious? I can't even remebur how to spel it noew. – Mike Bethany Nov 6 '10 at 8:20
2  
Just like delicious there is the option of git.orio.us – Dejan Jul 7 '11 at 14:48
2  
ctor() dtor() and gtor() gtor.org – Neel Basu Oct 15 '11 at 10:47
show 3 more comments

From a marketing perspective, GitHub has more going for it. It has a much better and iconic name: git hub is intuitive and hard to forget; gitorious is long and awkward and doesn't say anything about what the service does. The github pages are also better designed and look nicer, which is important. And finally, they have the momentum or popularity and large products, which is very important marketing-wise. I'm sorry, Gitorious, but just being a technically good product isn't enough.

share|improve this answer

There's another class of answer - network effects. Why is the Orkut.com social network service huge in Brazil, and why was it huge in Iran? Yet fell from favour in the US and Europe? Why is Hyves.nl clinging on to social networking dominance in the Netherlands, and the once globally famous Friendster now focussed on south-east Asia? Looking for answers to these kinds of question solely in the intrinsic features of each site is missing the social aspect; people use sites that people they know use. They're popular because they're popular, and a little advantage can go a long way.

If we think of the developer demographic as a curiously non-geographical territory it might be clearer what's happening here: github is used ... because it is used. Once I crossed the threshold of having made an account there, it was very easy to follow people and projects, and drop the occasional message to a developer. I have no idea if Gitorious lets me do similar, because I've never even looked: the projects I'm interested in are more often than on on Github.I use it because others use it, not (directly) because of the social features, although they certainly add to my incentive to create an account there.

share|improve this answer
1  
Network effects explain Github's continued dominance, but then how did it pass Gitorious in the first place? – Mechanical snail Oct 1 '11 at 6:59
Orkut was invite only for as long as I could remember. It couldn't get out of its ghetto for this reason. Facebook appeared later and overtook it. Though features, UI and target market for both were almost the same. – CDR Dec 27 '11 at 6:23

I had never heard of gitorious before this question was asked.

The answer probably lies in what projects were posted to each site, and by who. I'm sure the popularity of the software, or the developers, hosted on each site will indicate "why" github is more popular.

share|improve this answer

Github has grabbed a lot of attention lately due to a number of high-profile projects opting to host their code with Github. Most notably is probably Ruby on Rails, which brought it to the attention of a lot of developers already starting to try out Git. Gitorious just hasn't had that kind of exposure, and as such has not been able to attract the following that Github has.

share|improve this answer
2  
Except now Nokia has decided to host all their Qt repositories on Gitorious and at the moment KDE is thinking of switching too. – Milliams Mar 5 '10 at 14:13
1  
And then, Facebook uses GitHub for number of projects – ZJR Apr 26 '10 at 1:01

(Original answer, July 2010)
One recent reason not mentioned here yet:

smart http transfer protocol support. (a big deal for me, as I detailed here)

alt text

GitHub has it.
Gitorious? Not so (for now)


(Update, Mars 2012)
One of the SO readers, Ikem (who is amazing, blog Linux Workers), actually asked Gitorious developers about this.
Their answer:

We do, [..] have an experimental service which uses this. Simply substitute "https://git.gitorious.org/" with "http://jit.gitorious.org/"

The reason why we haven't moved to this new service is we're still working on implementing push support.

So it is coming!

share|improve this answer
+1 pretty colors. – dokkaebi Nov 2 '12 at 2:19

Github is a project hosting AND a social network: is really easy to interact with people (by forking and submitting patches for example) on Github. Also (this is subjective) Github's layout is sexier, and that counts in this 'web 2.0' world.

share|improve this answer

I noticed everyone forgot another feature of github... Private repositories. Sure its not for open source projects BUT that means that your developers can use GITHUB at work AND at leisure all at the same time. Sorry not everyone is a full-blown os advocate. Its why I felt that Adobe FLEX2 was a flop. The only ide for it was like 500 or 1000 dollars. Nobody would use that at home, and thus no "great" projects used it because nobody was buying the IDE licenses. textmate is an exception because it is cheap and worth the price. Same here, you want to attract everyone at all times to develop on your platform vs some of the people some of the time.

share|improve this answer
Yeah, that's a big one, but private repos should appear on gitorious pretty soon: blog.gitorious.org/2011/12/08/private-repositories – naught101 Feb 1 '12 at 8:00

Github got the popular frameworks on board:

Ruby on Rails - Ruby Mootools, Prototype - Javascript Some big CMSs, PHP frameworks, etc..

Which causes most to be introduced to Git and Github together. And makes us have to learn Github in order to keep our forks of those big players.

Good graphics, decent guides, all help.

The rest is history.

share|improve this answer

Another point in favour of Github: Github seems to have a solid business model; I don't mind paying $7-$12 per month for its features AND the knowledge they will be around in the future still improving the site AND somebody to complain to if things don't work. Gitorious is completely free, but it seems less stable, I doubt they can reach and keep up with Github's offers while continuing to be free.

share|improve this answer
gitorious also has a paid-features model, although the features are probably different: gitorious.com – naught101 Feb 1 '12 at 8:02

Lack of post-commit hooks with Gitorious (see Has Gitorious hooks for CIA commit notification?) is one big disadvantage compared to GitHub to me.

share|improve this answer

It seems Gitorious is lacking even basic branch/merge graph, not to mention the clone network graph. Sure it's still usable for hosting, but that lack of visualization is a huge drawback

share|improve this answer

It could just be that more people are talking about and using Github, thus generating more traffic and popularity for it compared to Gitorious.

share|improve this answer

I agree github is sexier, but gitorious is good enough for most small projects.

Gitorious being open source and being possible to install and configure to your needs is attractive.

One of the main reasons github is more popular than gitorious are the big projects using it. But now QT is open to community contributions and using gitorious (qt.gitorious).

So, Gitorious should notice a big increase in popularity. At least among KDE users.

share|improve this answer
I actually find setting up new projects much easier on GitHub than on Gitorious... – Egon Willighagen Dec 16 '09 at 10:21

Not the answer you're looking for? Browse other questions tagged or ask your own question.