I currently commit files to my SVN server (which is located on my web host), and from there I SSH in and export them to the working directory in my htdocs.
As my application gets larger and larger, a full export is a waste of time. How can I only export the files that have been changed?
svn export -r xxxx:HEAD http://svn/
Is a solution I had found, so maybe this can help? How can I automatically get the revision?