命令: git -c diff.mnemonicprefix=false -c core.quotepath=false --no-optional-locks ls-remote ssh://git@gitlab.vonechain.com:22022/tourism_ar_group/ARMainPro.git 输出: 错误: The host key is not cached for this server: gitlab.vonechain.com (port 22022) You have no guarantee that the server is the computer you think it is. The server's ssh-ed25519 key fingerprint is: ssh-ed25519 255 SHA256:FrkCf34C9+S7Q658gu9JofopBF9o+KHE2Ysuqtyyrxk If you trust this host, enter "y" to add the key to PuTTY's cache and carry on connecting. If you want to carry on connecting just once, without adding the key to the cache, enter "n". If you do not trust this host, press Return to abandon the connection. Store key in cache? (y/n, Return cancels connection, i for more info)
时间: 2024-04-29 13:19:32 浏览: 173
这个输出是在使用 Git 命令行工具尝试通过 SSH 连接到 gitlab.vonechain.com 的 Git 仓库时出现的。提示信息显示你连接的服务器的 SSH 密钥还没有被缓存,需要进行确认。
如果你信任这个服务器,可以输入 y 并按回车将密钥添加到 PuTTY 的缓存中并继续连接。如果你不确定是否信任这个服务器,可以输入 n 并按回车放弃连接。如果你想了解更多关于这个服务器的信息,可以输入 i 并按回车。
如果你想在以后的连接中跳过这个确认,可以在 Git 配置中设置 StrictHostKeyChecking 为 no。但这样做会降低连接的安全性,不建议在生产环境中使用。
阅读全文