views:

35

answers:

1

Is there a way to checkout single file from different SVN directory to single Target directory.

Ex: on SVN repository

svn://ddev/EDW/trunk/src/etlDataStream/ASGC
files: File1.dtsx
       File2.dtsx

svn://ddev/EDW/trunk/src/etlDataStream/HIRD
files: File5.dtsx
       File6.dtsx

I want this to be pushed to single directory of Target systems as

c:\etlDataStream
files: File1.dtsx
       File2.dtsx
       File5.dtsx
       File6.dtsx

How can this be acheived?

+1  A: 

You can actually do this with the latest subversion. svn supports svn:external for a single file from version 1.6. However it has its own incompatibilities(still has open bugs).

http://subversion.apache.org/docs/release-notes/1.6.html#externals

Check this link for the implementation.

Version Control Buddy
Yep, entirely possible on a file by file basis. Not entirely convinced it's a good idea tho.
Jim T