How do I handle symbolics links in projects under source control?

zliljustin93

New Member
We have several php projects. The projects use the Zend Framework and we also maintain a common core library with various functions.Right now my directory structure looks like this\[code\]project-1 \application \model \views \controllers \libraray \Zend -> symlink to ../../libraries/Zend \Core -> symlink to ../../libraries/Core \Project1Libproject-2 \application \model \views \controllers \libraray \Zend -> symlink to ../../libraries/Zend \Core -> symlink to ../../libraries/Core \Project2Liblibraries \Zend \Core\[/code\]In Subversion I seem to be having trouble with the sym links, it's adding the actual files (I'm using Syncro on the Mac) instead of just the sym links. But it got me thinking and I was wondering what the best way of laying out the project is in order to avoid having multiple copies of the same libraries?
 
Back
Top