1

I've followed the Tim's article (mentioned in the answer to this question), but - like many others, it seems - I'm stuck when trying do the test clone at the end. I get the fatal: the remote end hung up unexpectedly error, even though my $HOME path seems to be right.

Anyone got any pointers to where I might start for debugging this? My git and linux-fu are severely limited...

I'm aware of this answer to the same question, but it doesn't apply in my case, I don't get any messages about paths.

Community
  • 1
  • 1
Benjol
  • 63,995
  • 54
  • 186
  • 268
  • Does http://stackoverflow.com/questions/1499279/how-can-i-get-git-and-copssh-to-look-in-the-correct-directory-for-keys/1499801#1499801 has any influence on the issue? (or http://stackoverflow.com/questions/2154195/git-push-origin-master-invalid-port-number/2154780#2154780)? To debug ssh issue in general: http://stackoverflow.com/questions/922210/unable-to-git-push-master-to-github/922461#922461 – VonC May 04 '10 at 11:04
  • @VonC, thanks, I'm working through them. Firstly I realise that the .bashrc hack in section 5.5 of the article I mentioned is wrong, so the `export HOME=` was commented out. But that hasn't solved my problem :( For what it's worth, I just tried `ssh myuser@10.10.5.74 -p 4837`, which says `Permission denied (publickey,keyboard-interactive).` So I'm off to brush up on this keys business.. – Benjol May 04 '10 at 12:27
  • see also http://stackoverflow.com/questions/2871273/how-can-i-set-up-a-git-repository-on-windows-and-then-push-to-pull-from-it-on-ma/2871399#2871399 for an interesting technique to debug ssh calls. – VonC May 20 '10 at 08:16

1 Answers1

0

Just to formalize my comment:

Since you mention:

I just tried

 ssh myuser@10.10.5.74 -p 4837

which says

Permission denied (publickey,keyboard-interactive).

it means you need to check how you define your key (probably with a pass-phrase, which might be an issue here)

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250