How to prepare directories for a project with many languages in one Subversion repository?
I want to have 1 project made of PHP, Flex and MySQL. How should I prepare directories for its SVN repository?
Should the all 开发者_如何学PythonIDEs source code paths point to the same working directory?
Your repo could look something like:
repository
|
|-- PHP project 1
|
|-- Flex project 1
|
|-- MySQL project 1
|
`-- project X
The source code path in each IDE would correspondingly point to the following directories in your working copy:
../working-copy/PHP project 1/
../working-copy/Flex project 1/
../working-copy/MySQL project 1/
etc.
精彩评论