Search code examples
mavencopymigrationrepositorycvs

Copy a CVS project into another CVS project


In our CVS repository our projects look like this:

- app-parent
- app-backend
- app-gui
- app-common

Now I want to represent the Maven structure of our projects also in our CVS repository. So the repository should then look like this:

- app-parent
    - app-backend
    - app-gui
    - app-common

How can I copy a CVS project into another CVS project? I also want to copy the CVS history of the files and folders in this step.


If it isn't possible with keeping the history then it'd also be OK with losing it. :-)


Solution

  • I simply copied the directories on the file system with cp -rp.