Tortoise使用方法:
http://www.svn8.com/svnsy/20080318/360.html
http://fairyfish.net/2007/09/08/tortoisesvn-introduce/
http://junnan.org/blog/?p=7
要想 在一段时间之后更改原来的日志信息,则必须启动钩子
也是:”此版本库不允许修改版本属性请管理员创建pre-revprop-change钩子“问题的解决方法:
方法如下:(在Windows XP下)
在版本库中的hooks目录中,新建pre-revprop-change.bat,编辑内容为:
if "%4" == "svn:log" exit 0
echo Property '%4' cannot be changed >&2
exit 1
此处内容相当简单,当然考虑的方面不够全面,仅仅是实现了。