I am using Windows7 with Tortoise SVN.

I have a folder which is pointing to a path under Subversion (http://svn.belux.conseur.org/svn/repository/blabla/...).

I would like to have a script or a way to copy automatically all files from a source folder to a target location on my local network, after committing files.

Is there a way to do it?

link|improve this question

75% accept rate
feedback

1 Answer

up vote 0 down vote accepted

svn export can do this but you would have to use the command line tool and a batch script.

@echo off
svn commit %*
svn export %* \\server\folder\
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.