vote up 1 vote down star

Trying to use the git clone command. My understanding (please correct if wrong) was that in order to host a Git repository you just need a machine running ssh and the project/repository sitting on it in a permitted location.

I have my git repository on an OS X system that's running ssh. I'm trying to clone it on a Windows XP system. I have Git Bash installed on the XP machine. In the Git bash (MINGW) console, I can ssh into the Mac no problem.

However, git clone fails...

$ git clone username@host:~/project/path/contactdb
Initialized empty Git repository in 
  c:/Documents and Settings/Administrator/My Documents/projects/contactdb/.git/
bash: git-upload-pack: command not found
fatal: The remote end hung up unexpectedly

Tried it with and without .git extension:

$ git clone username@host:~/project/path/contactdb

$ git clone username@host:~/project/path/contactdb.git

Do I need something else installed on the Mac?

flag

1  
You need to try with the .git extension only if you have the remote directory name with a .git appended. – Alan Haggai Alavi Jun 16 at 1:14
Thanks, I was wondering about that. – Ethan Jun 16 at 1:17
If you are connecting over ssh, use: git clone ssh://user@host/~/project/path/contactdb – gahooa Jun 16 at 1:24
And... make sure that you can connect with ssh using ssh user@host – gahooa Jun 16 at 1:27
The way that Ethan currently connects via SSH is correct. – Alan Haggai Alavi Jun 16 at 1:33
show 1 more comment

2 Answers

vote up 1 vote down check

Have a look at this thread: http://kerneltrap.org/mailarchive/git/2008/3/6/1092284. It seems to be a path issue.

link|flag
vote up 4 vote down

You need to have Git installed on the machine that has Git repository you want to clone; also git-upload-pack has to be in $PATH on remote machine when doing ssh. Do you get something like the following response when directly ssh-ing to remote machine:

$ ssh username@host git-upload-pack --help
usage: git upload-pack [--strict] [--timeout=nn] <dir>

or the following (wrong) response:

$ ssh username@host git-upload-pack --help
bash: git-upload-pack: command not found

(of course name of shell depends on what remote side is using).

What also might be problem (although perhaps not in your case) is having misconfigured remote machine so that uses interactive shell for ssh connection, either giving some messages on connection, or setting interactive variables like infamous $CDPATH environmental variable.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.