Hi everyone,
I have a SVN server running on Windows.
I need to force an update on every "working copy" (for each people using the svn repos) after a commit. I tried with a post-commit.bat script in the hook directory on the svn server. The problem is that the update occures on the server and not in the client file.
Here an extract :
@ECHO OFF
SET REPOS=%1
SET REV=%2
SET DIR=%REPOS%/hooks
SET WORKING_COPY=c:\path\to\working\copy
svn update %WORKING_COPY%
Exemple : Person 1 : commit
post-commit Person 2 : update
If it's not possible, I would like to have at least on automatic update for the person 1. Person 1 : commit, then automatic update in his working copy.
I've seen the solution with a Windows Scheduled task, but it's my very LAST solution.
Can you help ? Thanks a lot.