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?
|
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?
|
|||
|
|
|
|
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. |
||||||||
|
|
|
use
Gets just the source, nothing else. Look here for more info |
||
|
|
|
|
No need for a script. As suggested, use the Export command:
|
||
|
|
|
But if you don't want to use svn export (for whatever reason)...
|
||
|
|
|
|
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. |
||
|
|
|
|
Do |
||
|
|
|
|
Use the export feature. |
||
|
|
|
|
On a computer: rsync -avz --exclude=".svn" /yourprojectwithsvninside/ /yourprojectwithoutsvninside/ From the repo: svn export http://yourserver/svn/yourproject/ ./yourproject/ |
||
|
|
|
|
Thanks Timgrin... the rsync approch was perfect! |
||
|
|