Repository has not been enabled to accept revision propchanges

linux下处理svn无法重新编辑log message方法如下

报错信息
Error:svn: E165006: Repository has not been enabled to accept revision propchanges; ask the administrator to create a pre-revprop-change hook

  • svn安装路径下找到repositories/hooks文件下的post-revprop-change.tmpl

  • 移除post-revprop-change.tmpl的后缀名.tmpl(或新建post-revprop-change).文件头部写入内容

    #!/bin/sh  
    exit 0;  
    
  • 修改post-revprop-change权限为755

  • 无需重启,即可看到效果

原文链接

你可能感兴趣的:(Repository has not been enabled to accept revision propchanges)