Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can you 'checkout' from SVN without getting all the .svn stuff?

Tags:

svn

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?

like image 795
Mr. Boy Avatar asked Nov 30 '22 18:11

Mr. Boy


2 Answers

You're looking for export.

like image 188
Rob Avatar answered Dec 09 '22 09:12

Rob


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

like image 32
CrimsonX Avatar answered Dec 09 '22 10:12

CrimsonX