I try to push changes from my local repo to a remote repo. When I type:

git push origin

I get the following error:

The server's host key is not cached in the registry. You
have no guarantee that the server is the computer you
think it is.
The server's rsa2 key fingerprint is:
ssh-rsa 2048 xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx:xx
Connection abandoned.
fatal: The remote end hung up unexpectedly

How can I solve this? I'm using git from the command line in Windows 7.

Edit

When I try to do a simple ssh

ssh user@hostname

I get the following error:

Could not create directory '/c//%HOMEDRIVE%%HOMEPATH%/.ssh'.
percent_expand: unknown key %H

Somehow it will not create the directory, because the path is invalid. How to fix this?

@eckes: Edit2

My Home is set to %HOMEDRIVE%%HOMEPATH% is this correct?

link|improve this question

1  
Seems like $HOME isn't set up correctly. Try to set the HOME environment variable on windows using My Computer -> right click -> Properties -> Tab Advanced -> Button Environment Variables – eckes Feb 8 '11 at 10:36
1  
I'm not a windows guy, but it does strike me as odd that after /c// (presumably a drive letter) you still have %HOMEDRIVE%... You might be able to save yourself some time by fiddling with the value yourself, and echoing it? – Jefromi Feb 8 '11 at 14:48
Expand HOMEDRIVE and HOMEPATH and set HOME to the resulting value... – eckes Feb 8 '11 at 17:03
feedback

3 Answers

up vote 6 down vote accepted

The message means that the host key of origin is not present in your trusted hosts file.

To get around this, open a plain SSH connection to origin and SSH will ask you if you want to trust the remote host (from the Git console):

$ ssh 127.0.0.1
The authenticity of host '127.0.0.1 (127.0.0.1)' can't be established.
RSA key fingerprint is <FINGERPRINT>.
Are you sure you want to continue connecting (yes/no)?

If you trust the remote host (i.e. type yes), SSH will enter it's key to the list of known hosts.

After that, you should be able to do your git push origin.

As an alternative, you could also manually add the key of origin to .ssh/known_hosts but this requires that you adhere to the format of the known_hosts file as described in the man page of sshd (Section AUTHORIZED_KEYS FILE FORMAT).

link|improve this answer
Thanks for your reaction. Please check my edit. – Rene Terstegen Feb 8 '11 at 10:21
1  
I got the same message when doing a push to github but I can ssh to github and I do have github.com in my known_hosts file. – Magnus Lindhe Nov 10 '11 at 20:09
feedback

Try doing a "set | grep -i ssh" from the Git Bash prompt

If your setup is like mine you probably have these set:

GIT_SSH='C:\Program Files (x86)\PuTTY\plink.exe'
PLINK_PROTOCOL=ssh
SVN_SSH='"C:\\Program Files (x86)\\PuTTY\\plink.exe"'

I did a

unset GIT_SSH
unset PLINK_PROTOCOL
unset GIT_SVN

and it worked after that,.. I guess putty saves its keys somewhere else as $HOME/.ssh or something... (I've also had a problem on a box where $HOME was set to "C:\Users\usrnam" instead of "/C/Users/usrnam/"

anyway, your mileage may vary, but that fixed it for me. :-)

(probably just doing the unset GIT_SSH is enough, but I was on a roll)

link|improve this answer
"unset GIT_SSH" worked for me. I had set up Pageant / putty previously for a different server, but when I built new keys using the Git Bash prompt, I needed to go back. Thanks for the help. – Symmitchry Mar 8 at 22:51
after taking your steps I got further but now I get a "currupted mac on input" error... ever seen that one? – AlfalfaStrange Mar 24 at 15:23
unset GIT_SSH worked for me also. Thank you! – WebDevPT Mar 30 at 3:04
feedback

Just ssh'ing to the host is not enough, on Windows at least. That adds the host key to ssh/known_hosts but the error still persists.

You need to close the git bash window and open a new one. Then the registry cache is cleared and the push/pull then works.

link|improve this answer
ssh/known_hosts is relativ to what?, %USERPROFILE% I am having this issue on Win 7, and no solution... – Fronker Apr 27 at 13:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.