Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Google code or GitHub for project hosting? [closed]

Is Google code similar to Github where you can put your source code for collaboration?

Which is the de-facto SCM it's using?

And which one is recommended for project hosting?

like image 455
never_had_a_name Avatar asked Sep 15 '10 11:09

never_had_a_name


4 Answers

Update 2013:

All major repo hosting services supports git, and supports smart https access (see below):

  • code.google.com (with cases like this one, July 2011)
  • bitbucket.org
  • tfs.visualstudio.com (!, as explained by Scott Hanselman)

Currently (July 2013), the main difference (between GitHub and other services) is in term of release management, more specifically:

  • integration with Travis CI (continuous integration, possible more or less with all services)
  • release artifacts: See "GitHub Release Your Software (July, 2d 2013)":
    The ability to associate to a tag up to 100MB of binaries.

Initial answer (September 2010)

One big difference is the support by GitHub for smart http, as explained in the ProGit "smart http" section, supported since April 2010.

alt text

Being behind a firewall at work, that is more than useful to actually push anything to the remote repo!

I don't think "Google Code" support it officially, even though some contributors try to push that feature.

like image 132
VonC Avatar answered Oct 21 '22 05:10

VonC


Yes, they are similar but support different versioning systems. Also the collaboration style is different. While Github (and Launchpad and BitBucket and all the other DVCS hosters) focus more on active collaboration between forked projects, Google Code's primary way of collaboration is through tickets.

So none of them is per-se better than the other, but perhaps fits your project management and contribution/collaboration style better. The whole debate between centralized and decentralized code versioning systems is related to that.

like image 41
Horst Gutmann Avatar answered Oct 21 '22 05:10

Horst Gutmann


Some features that you should consider:

  • Open source:
    Google: Always open source.
    Git: Open source for free account, but you can pay to switch to close source.
  • VCS: Both google & github support Git (and others)
  • Wiki: Google wiki is poorly supported, unless you love to write with wiki tags. You can find many project in Google project hosting has there wiki in Git hub. Compare Wiki
  • Statitstics: Github provides many nice statistics chart, while Google provides only a list of updates Git:

Statistics-Git

Google:

Statistics-Google

like image 39
greensuisse Avatar answered Oct 21 '22 03:10

greensuisse


AFAIK Google code is yet to support git natively. At least as far as I can tell by the comments on the ticket open for this.

So if you are using or would like to use Git then Github will be naturally more suitable.

On the other hand if you are using SVN and would like to continue to then Google code might be a more natural fit.

I have found Github projects easier to set up and get going but that is fairly subjective. Some of my friends also claim that Github's support/ecosystem is better than Google's.

like image 28
Manoj Govindan Avatar answered Oct 21 '22 03:10

Manoj Govindan