Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is it possible to somehow migrate from Google Code to Github?

We have a fairly large project, and I've decided that Google Code is not quite living up to expectations. Github looks like a much more suitable platform -- but I feel like there's no escape for us. Is it a case of migrating stuff over manually? We're using svn currently, so I understand that we'll need to move to git somehow - is this going to be possible considering that I don't have admin access to our repository? Also, I know this is subjective and I don't want to start a holy war, but please also comment on your feelings about Google Code vs Github. Should we also be considering SourceForge?

like image 906
Nick Bolton Avatar asked Jun 23 '10 21:06

Nick Bolton


People also ask

How do I migrate from GitHub to GitHub Enterprise?

You can export migration data from an organization on GitHub.com by using the API to select repositories to migrate, then generating a migration archive that you can import into a GitHub Enterprise Server instance.


2 Answers

I've used all, and now I am using github and I am completely satisfied. Sourceforge had annoying ads and was slow, google code didn't have the features I wanted/needed.

As for moving to github, they have a guide here, the process should be quite simple: http://help.github.com/svn-importing/

like image 132
houbysoft Avatar answered Oct 27 '22 00:10

houbysoft


We're using svn currently, so I understand that we'll need to move to git somehow - is this going to be possible considering that I don't have admin access to our repository?

Nope, you can use git svn to convert a repo, even if you don't have admin access. Here's a good tutorial (from one of the GitHub guys, no doubt) that explains how to convert an SVN repo to Git (including how to migrate tags and branches properly, which git-svn doesn't do very well).

but please also comment on your feelings about Google Code vs Github.

I've never used Google Code for personal projects. I know from a visitor's standpoint, I like the interface and tools used by GitHub a lot better.

Should we also be considering SourceForge?

Ugh... I personally think SourceForge is probably the worst of the free source code hosting facilities nowadays.

like image 38
mipadi Avatar answered Oct 27 '22 00:10

mipadi