[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: .svn folders

From: Peter Valdemar Mørch <nospam_at_morch.com>
Date: 2005-01-19 13:52:56 CET

Zouari Fourat wrote:
> To reformulate my problem,
> when i need to upload a 'productif' version of my work, i do :
> svn co ...
>
> and then upload those check out files, is there an option in svn to
> checkout a 'productif' version of my project (so without .svn folders)

Yes, this is called "svn export"....

Or you can "svn co" + "find wc -name .svn -type d | xargs rm -rf" or you
can just disallow access to any .svn file in your apache config. (Which
is what I do)

         <LocationMatch /.svn>
                 Order allow,deny
                 Deny from all
         </LocationMatch>

Check:
http://www.morch.com/writings/.svn

Peter

>
>
> On Wed, 19 Jan 2005 13:32:38 +0100, Zouari Fourat <fourat@gmail.com> wrote:
>
>>Hello
>>when uploading my files (php developement project) to the distant
>>server (apache one) my '.svn' folders are public visible.
>>how do you do (you old experienced with svn and cvs systems) facing
>>such problem ?
>>
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: users-help@subversion.tigris.org

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Wed Jan 19 13:59:56 2005

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.