I'm planning to publish our live site today and I've read that the best option is to use svn export to avoid populating the working copy with .svn files, however this is no longer an issue with SVN 1.7 as the metadata is stored in a single file. Seems to me that using a working copy is much better than exporting as updating the live site would be as simple as running 'svn update'. Is there any reason not to checkout a working copy and use export?
|
The problem with using svn update is that it's too easy to update your live site. You might update to a version that doesn't work or is untested. I'd recommend instead a hybrid approach - before releasing a new version, tag it, then svn switch the live site to that tag. Obviously you still need to ensure you aren't serving up the root .svn directory. |
|||
|
|
Situation you're describing is a serious security threat. As you might already know, Subversion stores its metafiles directly in working copy using You can also find Nevertheless, there are simple solutions to this problem. Apache:
Nginx:
To sum up, main disadvantage of such approach is that you should know about the threat and do not forget to prevent possibility of accessing |
|||||||||||
|
svn updatethe site and pull in unexpected changes. If on linux, use a symlink:site_live -> site_1.00– Barry Jan 9 '12 at 23:30