I ran into a similar issue when accessing my own git server from NetBeans on Windows. To fix this, I manually created the known_hosts file in "c: \ Documents and Settings \ myusername \ .ssh" and put a record of my git server host. (I got this entry from another linux box, where am I doing ssh on git server)
After rebooting NetBeans, it happened! I could clone my git repository using the gitosis @ my- git -server url: my_porject
My setup is
I use NetBeans 6.9.1 on Windows XP.
In dir c:\Documents and Settings\myusername\.ssh, I have -
id_rsa
id_rsa.pub
known_hosts
(id_rsa and id_rsa.pub - same keys I was using on my linux box)
source
share