tags:

views:

249

answers:

1

I currently have an existing project that I have been working on in RadRails. I want to put the entire project into an SVN repository (hosted on Unfuddle). I downloaded the Subversion plugin.

I'm not sure how to actually take this file and commit it into the existing SVN repository.

A: 

First of all, I'm not really familiar with RadRails. The FAQ says they use Eclipse Subversive for Subversion support. They link to the Subversive manual for advanced topics from that FAQ page.

The way to import it manually (with the commandline client) is probably to first create the repository structure you want, by using (for instance):

svn mkdir http://server/svn/repos/trunk

Then checkout the empty directory in your project root, so you get a working copy where you can add things:

svn checkout http://server/svn/repos/trunk c:\MyProject

Then you can add files and directories

Sander Rijken