Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm migrating an SVN repository over to Git. The git-svn command doesn't handle the branches and tags properly but I stumbled across a tool called svn2git which seems to resolve this (https://github.com/nirvdrum/svn2git).

I've tried setting up this tool to work on Windows but I've not had much success.

I started off by copying the svn2git installation to C:\svn2git and downloading Ruby for Windows (http://rubyinstaller.org/) and saved it at C:\Ruby193.

Running svn2git came back with

/bin/env: ruby: No such file or directory

I then copied Ruby's bin and lib folders to svn2git's bin and lib folders respectively.

Running the svn2git then came back with

<internal:gem_prelude>:1:in `require': cannot load such file -- rubygems.rb (LoadError) from <internal:gem_prelude>:1:in `<compiled>'

Does anyone know how to get this working on Windows environment? Thanks

share|improve this question
What's wrong with git-svn and your branches? Do you have non-standard trunk/branches/tags layout? – Dmitry Pavlenko May 23 '12 at 12:38
@DmitryPavlenko: the problem is that tags aren't created as real git tags but as branches instead. svn2git converts svn tags to git tags. This has nothing to do with a special repo layout. – eckes May 23 '12 at 12:44

2 Answers

up vote 5 down vote accepted

Obviously, rubygems.rb is missing. Install it as documented here:
http://docs.rubygems.org/read/chapter/3

Then, install svn2git as instructed here:
https://github.com/nirvdrum/svn2git

After that, everything shall be fine.

share|improve this answer

I'd suggest you to try SubGit1 tool. It does translate Subversion tags as tags and works well on Windows (requires Java 5 or newer). SubGit is at EAP stage now, but is very close to release. You may get latest interim build at interim builds page and read documentation on the web site.

SubGit however requires local access to Subversion repository (over file system).

Disclaimer: I'm SubGit developer.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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