What I am trying to do is a git clone on windows, but the parent repository exists in a unix machine.

Am cloning using ssh to get a clone from UNIX to windows, and I get this weird error.

error: git checkout-index: unable to create file <filename>

This happens during the checkout step of a git clone.

Can anyone help me?

link|improve this question

48% accept rate
feedback

3 Answers

A common problem is two files whose names differ only by case — git assumes a case sensitive system. If the repository contains both FOO and foo, then attempting to create one after the other will fail.

link|improve this answer
feedback

Was your directory plus your filenames too long for Windows? I came across this problem once, and it was fixed when I tried cloning into a lower directory.

link|improve this answer
I came across the same problem before where the length of the address in windows was more than 256 or something, but now this error comes for many files which are not too deep. Thanks for the suggestions...Any other causes? – Senthil A Kumar Nov 1 '10 at 7:10
@Senthil: Could it be the length of the individual filename itself? I wouldn't be surprised if the length of individual filenames may have a lower limit than that. – Andrew Grimm Nov 1 '10 at 8:03
feedback

Your Answer

 
or
required, but never shown

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