Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在自动化一个从 SVN 存储库中签出数据的过程。使用 svn+ssh 建立连接时会出现此问题,它将提示最终用户接受来自主机的指纹。
在一个典型的 ssh 连接中,我知道我可以指定这个:
ssh -o StrictHostKeyChecking=no user@ip
有没有办法为 svn+ssh 连接做类似的事情?
--non-interactive
(避免提示)
--trust-server-cert
(自动信任服务器证书)
> 更多信息
...以及另一种可能的解决方案