Netbeans、git、拒绝主机密钥?
我目前正在尝试让 Netbeans 与 Git 插件一起工作。 如果我想从 Netbeans 中克隆我的 git 存储库,我会收到错误消息: 拒绝主机密钥:[存储库 url]
克隆就中止了。
这是什么意思以及如何解决它?
I'm currently trying to get Netbeans with the Git plugin working.
If I want to clone my git repository from within Netbeans I get the error message:reject hostKey: [repository url]
and the cloning aborts.
What does this mean and how do I fix it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要检查哪些用户正在运行 NetBeans,然后确保您的 ssh 私钥和公钥(
id_rsa
和id_rsa.pub
)位于关联的HOME/该用户的 .ssh
。请注意,在 Windows 上,默认情况下未定义
HOME
,因此您需要在运行 Netbeans 之前设置该变量。You need to check what user is running NetBeans, and then make sure your ssh private and public keys (
id_rsa
andid_rsa.pub
) are in the associatedHOME/.ssh
of that user.Note that on Windows,
HOME
isn't defined by default, so you need to set that variable before running Netbeans.