我该怎么办? 我的服务器是win2008.I想做一个钩子,文件“post-commit.cmd”可以在doule cllik时工作,但是当我在client.it提交时无法工作。它无法连接url.but url can在chorme工作。
Error: post-commit hook failed (exit code 1) with output:
Error: svn: E170013: Unable to connect to a repository at URL 'https://my ip/svn/chat'
Error: svn: E230001: Server SSL certificate verification failed: issuer is not trusted
@echo off
SET REPOS=%1
SET USER=%2
SET SVN="C:\Program Files\VisualSVN Server\bin\svn.exe"
SET DIR="D:\web\ultraman\chat"
(call %SVN% update %DIR% --username wbj --password wbj666 --non-interactive)
答案 0 :(得分:0)
服务器证书存在问题。联系管理员寻求帮助:
错误:svn:E230001:服务器SSL证书验证失败: 发行人不受信任
要取消警告,请将--trust-server-cert
命令行选项添加到svn.exe
。