Jevgeni Smirnov
Jevgeni Smirnov

Reputation: 3797

SVN. Copy files and folders between repository folders

I have a working copy which structure is similiar to this:

wc-root
     -folder1
     --trunk
     ---somefolder
     -folder2
     --trunk

How I can copy somefolder to folder2/trunk with all it's contents but without .svn files? Is it possible with SVN means? I tried to merge but failed. I use eclipse with subclipse plugin.

UPDATE I work with more complicated folder structure. Example:

     -folder1
     --trunk
     ---somefolder1
     ----file1
     ----file2
     ---somefolder2
     ----file3
     -folder2
     --trunk

Currently if I want to copy file1 and file3 to folder2 I had to create somefolder1 and somefolder2 under folder2/trunk and then make export to particullarly those folders.

What if I have >40 files in > 20 directories?

Upvotes: 1

Views: 2007

Answers (1)

Jon Winstanley
Jon Winstanley

Reputation: 23321

Export

Use the 'Export' function to extract the files without the .svn files.

You can export directly into the correct location. On your next commit, Tortoise will recognise the new folder and allow you to add it to the repos.

Upvotes: 2

Related Questions