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