我的SVN服务器为同步代码配置了挂钩,但是当我提交时,我的客户端提供了错误消息:
post-commit hook failed (exit code 1) with output:
svn: E155007: None of the targets are working copies
我的钩子配置:
"C:\Program Files\VisualSVN Server\bin\svn.exe" update "C:\tomcat\webapps\project" --quiet --username abc123 --password abc123
答案 0 :(得分:1)
错误意味着“C:\ tomcat \ webapps \ project”不是工作副本。因此,它无法更新。您应该仔细检查并输入您计划通过钩子脚本更新的工作副本的正确路径。
顺便说一句,不要忘记在脚本中使用--non-interactive选项并阅读documentation。