At times we'd like to only pull a small set of files (all from a commit) into our workspace with all the other files being from HEAD. I see how to get this list with the "svn log", but I'm not sure how to best actually get SVN to swap in just these files.
It looks like doing an "svn update" on the revision of the commit rolls the entire repo back to that point in time, which is not what we want. We only want the set of files changed in the commit.
"svn update" looks like it can also take a list of files, so I've read some posts of people recommending writing a script that takes the output of "svn log" and using it in the "svn update" command. That's the solution I was going to try unless there is a better way?? If not, can anyone point me to a completed version of a script that does just that?