Git клон с использованием ssh - не может найти хранилище
Я пытаюсь настроить сервер Git на Windows 7, используя CopSsh, PuTTY и msysgit. У меня проблемы с клонированием репозитория с использованием 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 ответ
Решение
Я неправильно понял путь...
git clone "ssh://steve@test:4837/Program Files (x86)/ICW/home/steve/vc/git/depo/test.git"
/c/dev/es/app/
работал.