Reputation: 179
I have a file that is to be placed in two different folders. Every time, I make an update to the file, I have to copy the file to the other path also and then commit to the repository. Is there a way in Tortoise SVN to make a sort of a link, like copy to a single path and commit to repository. The other folder should automatically grab the latest version that is linked to the path?
Upvotes: 1
Views: 367
Reputation: 97355
If file must be placed in different folders inside common repository, you have to use svn:externals - one file is real file, second - link to first file
Read SVN Book!
Upvotes: 1