private svn -> github

jozef on 2009-04-02T18:48:14

Today I've migrated all my open source code from my private svn repository to http://github.com/jozef.

Using `git svn` it was quite easy:

  • git svn clone -s http://svn/repo/project
  • cd project
  • git remote add origin git@github.com:jozef/project.git
  • git push origin master

Only time will tell if it was a good choice. :-)


me too

mpeters on 2009-04-03T13:07:55

Welcome to the bandwagon! I've put all my stuff there too: http://github.com/mpeters
The only OS thing I maintain now that's not on github is TAP::Harness::Archive because it's part of the larger TAP::Harness project so it's in their svn repo.

I've been a fan of offline commits for a while (used to use svk pretty heavily). Being able to incrementally commit things I'm working on is a big plus. And github's fork queue is really nice.