I have a remote Git repository from which i cloned and am able to pull/push to that repository. But recently when i tried to reclone the same repository to a different directory it is not working.

$ git clone -v 'http://user@server.com/git/project.git' project  
Initialized empty Git repository in f:/temp/project/.git/  
Password:  
error: cannot spawn git: No such file or directory

I can still do a git pull and push on the repository which i had already cloned.

I tried goggling for this error but not much of help. Can someone also tell me how i can debug such kind of errors?

link|improve this question

40% accept rate
By any chance was any more output after that? – David Zaslavsky Apr 7 '11 at 5:23
Is git in your PATH? – Raisen Apr 7 '11 at 5:23
What's git remote -v say for the repo you can still push/pull from? – Schwern Apr 7 '11 at 7:08
@David No more output after that – Udayakumar Rayala Apr 7 '11 at 9:42
@Raisen Yes git is in the path i can execute other git commands from the same command line – Udayakumar Rayala Apr 7 '11 at 9:43
show 1 more comment
feedback

2 Answers

git is unable to start the required subcommand for fetching HTTP repositories. It's likely to be /usr/lib/git-core/git-http-fetch – if it's missing, reinstall Git.


If on Linux, use strace to verify which program git tries to execute.

strace -o /tmp/git.log git clone http://.../

grep "^exec" /tmp/git.log | grep "ENOENT"
link|improve this answer
I am not sure if this is a problem with local git installation. I get the same error when i try to clone it from some other machine which has a fresh git installation. And also i can clone other repositories in the same directory in remote repository. – Udayakumar Rayala Apr 7 '11 at 9:58
@Udayakumar: In that case you're probably right. – grawity Apr 7 '11 at 10:19
feedback

For whatever reason, http isn't working. It could be a problem with your git http server (if it's affecting multiple clients) or your git installation (if all those clients are using the same version of git).

Your existing repository is using ssh, that's what git remote -v told you. So you can continue to use that. git clone user@server.com/git/project.git should work.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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