tags:

views:

47

answers:

1

I am working on a project that is SVN controlled, but as now i want to publish my project, i don't want my final project should contain ".svn" folders in them. Can you please suggest me the way to remove all those folders, so that i can deliver my project. But the final project must be separate directory structure, so that i don't disturb the original svn structure. I am working on PHP with Netbeans. Thanks

+7  A: 

You want the svn export command.

svn export will export a complete copy of your code tree, without any .svn directories or source control.

zombat