You might use **`svnlook dirs-changed`** and **`svn up -N`** to update only the contents of each folder changed:

    cd /home/www/dev_ssl
    svnlook dirs-changed [REPOS] -r [REV] | xargs /usr/bin/svn up -N

Or, if per-file might be better for you (using `sed` to strip action characters):

    svnlook changed [REPOS] -r [REV] | sed "s/^....//" | xargs /usr/bin/svn up