Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Netbeans, git, reject hostKey?

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?

like image 991
blubberbernd Avatar asked Nov 04 '22 16:11

blubberbernd


1 Answers

You need to check what user is running NetBeans, and then make sure your ssh private and public keys (id_rsa and id_rsa.pub) are in the associated HOME/.ssh of that user.

Note that on Windows, HOME isn't defined by default, so you need to set that variable before running Netbeans.

like image 189
VonC Avatar answered Nov 09 '22 14:11

VonC