I use SVN on Windows XP.
Situation: SVN as document archive. I have a few files that need to be organized into various folders and yet retain the orginal file structure.
Example: In a folder called "Templates"
File1.doc
File2.doc
File3.xls
File4.xls
Now, I want these to be organized in different folders:
Templates\Type1
File1.doc -> ..\File1.doc
File2.doc -> ..\File2.doc
File3.xls -> ..\File3.xls
Templates\Type2
File1.doc -> ..\File2.doc
File2.doc -> ..\File1.doc
File3.xls -> ..\File4.xls
When the files in the Templates folder are modified, the files in the Type* folders point to the right file.
How can I achieve this in SVN? Is there any other alternative way to do this?