I have a folder in the repository:
svn/Repo/trunk/Folder
And I want to export all the files in the Folder
to a local directory:
C:\AnotherFolder
If I do an export from the repository to a local folder, it exports all the files, including the parent folder, so I get the structure:
C:\AnotherFolder\Folder\file1 C:\AnotherFolder\Folder\file2 etc
How can I export without a parent directory? So I get something like:
C:\AnotherFolder\file1 C:\AnotherFolder\file2
source share