*可修改log脚本 配置pre-revprop-change文件 //此文件在show log中修改log时会运用到这个脚本,得到修改的权限,否则会报错DAV request failed; it's possible that the repository's pre-revprop-change hook either failed or is non-existent. At least one property change failed; repository is unchanged # cd /svnroot/test/hooks # cp pre-revprop-change.tmpl pre-revprop-change # vi pre-revprop-change 在末尾删除原来的,添加上以下参数
EPOS="$1" REV="$2" USER="$3" PROPNAME="$4"
if [ "$PROPNAME" = "svn:log" ]; then exit 0; fi exit 1