TortoiseSVN post-commit.bat doesn't work [migrated]
- by user565739
I am using TortoiseSVN on Windows 7 x64.
I tried to put a post-commit.bat in the hooks folder of a repository, but it doesn't work at all. So I tried to put a pre-commit.bat (the content is exact the same as post-commit.bat) in hooks, and it worked fine.
This is very strange. The .bat file is very simple, I just tried with:
@echo off
setlocal
set REPOS=%1
set TXN=%2
xcopy C:\a C:\b\ /S /F
exit 0
Anyone makes post-commit work with TortoiseSVN?