페이지

2009년 5월 30일 토요일

Enable log edit

In default, SVN seems do not allow to change log. I mistakenly commint my changes without entering logs but I coubldn't change the log until I found following direction.

Error Type: Repository Has Not Been Enabled To Accept Revision Propchanges



Solution

To enable the log modification, create a file in the “hooks” folder of Subversion repository with the name of “pre-revprop-change.bat”, and then type in following scripts.

rem Only allow log messages to be changed.
if "%4" == "svn:log" exit 0
echo Property '%4' cannot be changed >&2
exit 1

This solution was suggested in the TortoiseSVN documentation.

댓글 없음: