使用ssh进行Git克隆 - 无法找到存储库

时间:2010-03-12 13:37:53

标签: git ssh msysgit

我正在尝试使用CopSsh,PuTTY和msysgit在Windows 7上设置Git服务器。我在使用ssh克隆存储库时遇到问题。

如果我使用常规目录路径,它可以工作:

$ git clone ~/vc/git/depot/test.git/ /c/dev/es/app
Initialized empty Git repository in c:/dev/es/app/.git/
warning: You appear to have cloned an empty repository.

Ssh,不起作用。我尝试了不同的路径而没有成功。

$ git clone ssh://steve@test:4837/~/vc/git/depot/test.git/ /c/dev/es/app
Initialized empty Git repository in c:/dev/es/app/.git/
fatal: '~/vc/git/depot/eastApp.git' does not appear to be a git repository
fatal: The remote end hung up unexpectedly

我按照此处的说明操作:http://www.timdavis.com.au/git/setting-up-a-msysgit-server-with-copssh-on-windows/

任何线索?

1 个答案:

答案 0 :(得分:10)

我错了路径......

git clone "ssh://steve@test:4837/Program Files (x86)/ICW/home/steve/vc/git/depo/test.git" 
 /c/dev/es/app/

的工作。