I've installed git client on windows 7 on administrator account. On first pull git asked me if i wanted to add host to trusted locations. After that '.ssh' folder was creted in user home. When i placed my key 'id_rsa' in it I was able to pull from remote repository. I've created new windows user and tried to repeat the routine but i kept getting fatal error: "the remote end hung up unexpectedly". Any idea what may be the reason of this behaviour?

link|improve this question
feedback

1 Answer

  1. Have you tried to run ssh-agent (shipped with git) and add ppk key there?
  2. Try to create "config" file in .ssh directory with following content: Host ${repo_host} IdentityFile ~/.ssh/private_key
link|improve this answer
1. i tried after reading your post with no effect, 2. i didn't try this, i got it working by using ssh from git\bin instead of plink from putty family – wiero Nov 17 '11 at 10:56
feedback

Your Answer

 
or
required, but never shown

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