直接在TortoiseSVN中修改过往日志,会提示:
DAV request failed;it's possible that the repository's
either failed or is non-existent
At least one property change failed; repository is unchanged.
因为SVN库中的日志本身是没有进行版本管理的,为防止误操作导致原日志信息丢失,所以缺省禁止对其进行修改。如果要能在客户端进行修改,必须在repository的hook目录下新建一个pre-revprop-change.bat,内容如下:
if "%4" == "svn:log" exit 0
echo Property '%4' cannot be changed >&2
exit 1
在属性修改前,该脚本会被执行,如返回0即表示同意修改。
©️公众号:思考者文刀
- 上一篇: 向改变世界的猿媛致敬,1024程序员节【转】
- 下一篇: 「读后感」无奈大江东流去(上)~
评论