I am doing a git pull for the first time and have been prompted in git that the authenticity of host can\'t be established, the RSA key fingerprint isn\'t correct compared to th
I had similar issue, which means that the remote host is unknown /untrusted. The fix is to have the remote host entry in the known_hosts file.
This is what I have done:
Generate (or use existing) RSA keys and store them in the
file. If you are using eclipse, you can generate RSA keys using Preferences;
Generate RSA Key...
Save Private Key...
in the .ssh folderNow your
would contain file; private key, public key and known_hosts
ssh -vt @
Now if you try pushing the file to remote, you don't see any errors.