views:

41

answers:

1

I use a portion of ZEND framework and want to be able to update only those files, those files are few directories and few files from library/Zend directory.

I know I can copy only those direcotries and update them, but how can I do it with files in that library/Zend directory?

A: 

You can create a library/Zend directory, and set up svn:externals Subversion property for it. For example:

svn propedit svn:externals ./library/Zend

Set it to something like this:

Acl http://framework.zend.com/svn/framework/standard/trunk/library/Zend/Acl
Config http://framework.zend.com/svn/framework/standard/trunk/library/Zend/Config

Then, running svn update in your project root will only update Acl and Config to the latest version taken from ZF Subversion trunk.

Ivan Krechetov
Can this be done with TortoiseSVN and how?
dfilkovi
http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-howto-common-projects.html#tsvn-howto-common-externals
Ivan Krechetov