我在运行 Windows 2003 Server 的计算机上设置 Git 服务器时遇到问题。
我在服务器上安装了 CopSSH,并且可以通过 SSH 成功连接到服务器。然后,我在服务器上安装了 MSysGit(只是编译的可执行文件)。最后,我ln -s
在 CopSSH Bash shell 中使用了在 CopSSH 目录中创建指向 Git 可执行文件(来自 MSysGit's bin
)的链接bin
。
我可以成功连接到服务器并通过 SSH 使用 Git:
$ 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
但是,当我尝试从服务器克隆时,它不起作用:
$ 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
我怎样才能让它工作?