here’s what I want to do:
1) start developing a new web app, using a few frameworks and libraries
2) store it in SVN
3) update regularly the libraries and frameworks to the latest version, directly from their SVN servers
Do you have any advice on how to update those libraries?
If I understand what you’re asking, You can use the `externals’ property of SVN to “soft link” to other SVN repositories. I.e. in your repository:
lib1can be an empty directory with anexternalsproperty linking to the SVN repo of that library. When you update your sandbox, the data will be pulled out into that directory. You can also restrict it to a certain revision/tag of the library. Same withframework2and anything else you need.