I am web developer.I edit files in a local svn working copy on my own machine,our development server is a shared disk through samba,and the root directory of the server is also a working copy,what I want to do is to use a client-side svn post-commit hook to automatically update the working copy on the server whenever a developer commit some code.I've found two batch file can do this properly,one is using the subversion command,the other is using Tortoise SVN command,but the problem is both batch file update the whole working copy other than the changed files,which is very slow,often takes one or two minutes.So I think it may be faster if I can only update the changed files. Or mybe is it better to make the batch file to ssh to the server and update directly other than through samba?and how to do that?
Sorry for my poor English,any assistance would be greatly appreciated.