I'm using VisualSVN Server to manage a source folder. It's installed on a Windows XP machine, and it has access to a network disk.
On this network disk named W:
, I made a checkout on a folder this way:
svn checkout https://server:443/svn/Project W:\Project --username=user --password=pass
I can now update this folder using this command:
svn update W:\Project
The problem is:
I want to add a post-commit hook running this command:
svn update W:\Project
but when I commit, this error appears:
At revision: 123
post-commit hook failed (exit code 1) with output:
svn: E020024: Error resolving case of 'W:\Project'
Any ideas ? I don't know if it's a good practice, my goal is to keep a copy of the project on another disk out of the svn server and back it up.