I'm having trouble setting up a Git server on a computer running Windows 2003 Server.

I installed CopSSH on the server, and can successfully connect to the server with SSH. Then, I installed MSysGit on the server (Just the compiled executables). Finally, I used ln -s in the CopSSH Bash shell to create links to the Git executables (from MSysGit's bin) in CopSSH's bin directory.

I can successfully connect to the server and use Git over SSH:

$ ssh git@<server>
git@<server>'s password:
Last login: Sun Dec   4 10:10:08 from <computer>

git@<server> ~
$ cd /cygdrive/c/gitRepos/

git@<server> /cygdrive/c/gitRepos/
$ mkdir test.git

git@<server> /cygdrive/c/gitRepos/
$ cd test.git

git@<server> /cygdrive/c/gitRepos/test.git
$ git init --bare
Initialized empty Git repository in C:/gitRepos/test.git/

git@<server> /cygdrive/c/gitRepos/test.git
$ exit
logout
Connection to <server> closed

But, when I try to clone from the server, it doesn't work:

$ git clone ssh://git@<server>:22/cygdrive/c/gitRepos/test.git
Cloning into test...
git@<server>'s password:
fatal: The remote end hung up unexpectedly

How can I get this to work?

link|improve this question
feedback

1 Answer

up vote 1 down vote accepted

Please take a look on this answer. Maybe you have the same issue?

link|improve this answer
No, both Git and CopSSH are using their versions of Bash - as I said, I can log in with SSH, and Git works fine. It's just when I try to run git clone that it doesn't work. – ThatOtherPerson Dec 5 '11 at 13:23
So maybe you have your SSH keys stored in two separate folders? And file cloning git tries to access wrong key pair? – Alexey Shytikov Dec 5 '11 at 13:44
Actually, I'm not using SSH keys - just passwords. – ThatOtherPerson Dec 5 '11 at 13:46
Why do you need CopSSH client? If you installed msysgit it already has an ssh executable, so you can try to establish ssh session from msysgit bash and debug the ssh command output and find out the reason. I believe you will see, that git's ssh missing something important. – Alexey Shytikov Dec 5 '11 at 15:05
I'm not using a CopSSH client - it's a server – ThatOtherPerson Dec 5 '11 at 15:11
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

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