Another small batch file hook for those running subversion on windows. This hook will allow users to update a log message on the old check-in.
Note: Property changes are not versioned, so you will permanently loose the old message.
Place this in a pre-revprop-change.cmd
-------------
IF %5 EQU M GOTO CONT1
GOTO FAIL
:CONT1
IF %4 EQU svn:log GOTO OK
:FAIL
echo "Changing revision properties other than svn:log is prohibited" >&2
exit 1
:OK
exit 0
------------
Technorati Tags:
Subversion,
Tips,
Windows Cross-posted from http://blog.tfanshteyn.com/2007/12/subversion-pre-revprop-change-hook.html