Search code examples
svnversion-controlcvscvs2svnversion-control-migration

Converting many CVS modules into a single SVN repository


I have a rather large CVS repository that I am looking to only convert a handful of modules into a single Subversion repository. I have been correctly guided to using cvs2svn for the conversion and have even gotten as far as building my own options file. I do not need to retain tags or branches, but I would like to retain the revision history. My issue is that I want my modules to be under a single trunk folder, e.g. svn/trunk/module1 and svn/trunk/module2 instead of svn/module1/trunk and svn/module2/trunk. When I set the path to nothing it throws an error about the path being blank. Any suggestions?


Solution

  • My issue is that I want my modules to be under a single trunk folder, e.g. svn/trunk/module1 and svn/trunk/module2 instead of svn/module1/trunk and svn/module2/trunk. [...] Any suggestions?

    Why don't you import the structure the way it is and move things around later in the repository? The ability to move things around is one of the greatest advantages of SVN over CVS, after all. (The fact that this change of structure is then in the history can actually be seen as an advantage.)