tags:

views:

58

answers:

4

Maybe there is a proper term for this, but what if you want to simply download a specific revision of a file/directory to disk and never want to commit any changes - say as part of a build/release process - and you don't want the SVN meta information.

Is there an easy command for this? Is this what export does? Or is that for dealing with "un-SVNing" an existing checkout?

+13  A: 

You're looking for export.

Rob
+2  A: 

svn export is what you're searching for

f4
+1  A: 

Export does a copy but removes all .svn folders. So you can checkout then export.

Andrey
+4  A: 

Yes, Export should have the functionality that you're looking for -

"SVN Export to here: exports the dragged files/folders to the target location, i.e. creates a copy without the .svn folders"

From Tortoise SVN site

CrimsonX