vote up 7 vote down star
3

Hi,

I'm using subversion (TortoiseSVN) and I want to remove the .svn folders from my project for deployment, is there an automated way of doing this using subversion or do I have to create a custom script for this?

flag

35% accept rate

9 Answers

vote up 16 vote down check

ToritiseSVN has an export function. This will create the entire SVN else where without the .svn folders.

Also, a lot of FTP clients have filtering, which you can add .svn to just in you forget one day.

link|flag
thanks, I was looking for a tortoise solution preferrably. I'm using filezilla, does that have filtering? – public static Oct 2 '08 at 1:53
Check out FireFTP if Filezilla doesn't have what you want. – Bill James Oct 2 '08 at 2:11
Tortoise can do an export. Right-click in windows explorer, TortoiseSVN > Export. – glenc Dec 3 at 17:02
@glenc Isn't that exactly what my answer is? – Darryl Hein Dec 3 at 17:43
vote up 20 vote down

use

svn export <url-to-repo> <dest-path>

Gets just the source, nothing else.

Look here for more info

link|flag
vote up 8 vote down

No need for a script. As suggested, use the Export command:

  • Right click on the top level of your working copy.
  • Open the TortoiseSVN sub-menu
  • Select Export
  • Follow on screen dialogs.
link|flag
Voted up for the hokie logo (and the better answer) . Go Hokies :) – Doug T. Oct 2 '08 at 2:11
vote up 2 vote down

But if you don't want to use svn export (for whatever reason)...

find /path/to/project/root -name '.svn' -type d -exec rm -rf '{}' \;
link|flag
vote up 1 vote down

public static: yes FileZilla has filename filtering. Look under View -> Filename Filters. I checked in v3.1.1

I think most FTP clients have it now.

link|flag
vote up 0 vote down

Do svn export <url> to export a clean copy without .svn folders.

link|flag
vote up 0 vote down

Use the export feature.

link|flag
vote up 0 vote down

On a computer:

rsync -avz --exclude=".svn" /yourprojectwithsvninside/ /yourprojectwithoutsvninside/

From the repo:

svn export http://yourserver/svn/yourproject/ ./yourproject/

link|flag
vote up 0 vote down

Thanks Timgrin... the rsync approch was perfect!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.