git copssh 的克隆问题

git clone issue with copssh

使用 copssh,我设置了自己的 git 服务器,ose os 是 windows 2012。
我已经创建了一个 git 代表ository.
The git repository directory

如图所示,有一个 git 代表os 名为 "vacationsabroad.git"

在我的本地电脑上,我要克隆这个代表ository。 所以我使用以下命令。

 git clone administrator@myserverip:/cygdrive/c/cossh/home/admin/git/vacationsabroad.git

但我遇到了致命错误:

fatal: '/cygdrive/c/cossh/home/admin/git/vacationsabroad.git' does not appear to be a git repository fatal: Could not read from remote repository.

Please make sure you have the correct access rights and the repository exists.

Error window

我该如何解决这个问题?

使用copssh和git服务器时,可能需要使用以下命令。

To check out a repository: git clone {username}@{servername}:{repodriveletter}:/{repopath}

所以你的命令可能是这样的。

git clone administrator@myserverip:c:/cossh/home/admin/git/vacationsabroad.git

希望对您有所帮助。如果它不起作用,请告诉我。