Marcus schrieb:
On Tue, May 27, 2008 at 4:14 PM, Luciano Rocha [off-list ref] wrote:
quoted
What is the correct path on the remote?
The full path to the Git repo is:
/home/admin/mydomain.com/git/projectname.git
I tried:
git clone ssh://admin@mydomain.com/~/git/projectname.git
It gives the same error.
Try
git clone admin@mydomain.com:/home/admin/mydomain.com/git/projectname.git
or (assuming /home/admin is your home directory)
git clone admin@mydomain.com:mydomain.com/git/projectname.git
or (if you can't live without the ssh: protocol specifier)
git clone \
ssh://admin@mydomain.com/home/admin/mydomain.com/git/projectname.git
-- Hannes