When I clone the repo using msysgit, all the files with spaces in the filename are not brought down, and then show as deleted in the status.

The filenames looks something like this: styles-ie (1:12:11 6:02 PM).css so it might actually be the colon or brackets?

How can I fetch those files to bring my local repo inline with the origin?

link|improve this question

76% accept rate
1  
according to support.microsoft.com/kb/177506 a colon is an invalid filename character on Windows. So does this mean that I can never clone/fetch the file to a Windows system or is there some filename translation? – Jonathan Day May 13 '11 at 13:33
I suggest you change the file name. – Jeremy Heiler May 13 '11 at 13:35
2  
More accurately, I believe you can't check out the file. The object (blob) representing it is in your repository, and it was transferred as part of a clone or fetch, but when Git attempts to write that file into your work tree, Windows won't let it. – Jefromi May 13 '11 at 13:45
feedback

2 Answers

up vote 4 down vote accepted

If you try doing:

touch "styles-ie (1:12:11 6:02 PM).css"

you will see that you cannot create it on Windows.

Basically, the repo has the file ( the blob and the tree entry ) but you cannot checkout on Windows as git would be unable to create such a file. No other way but to change the filename.

link|improve this answer
thanks, so specifically a user with a clone of the repo on a non-Windows system needs to change the filename and push so that I can fetch it, right? – Jonathan Day May 14 '11 at 1:49
@Jonathan Day - yes that would be the case. – manojlds May 14 '11 at 1:51
feedback

Do you have more information? I created a test repo with a file whose name contains a space on a Linux box then cloned that to my Windows box (using msysgit 1.7.3.1) worked fine (the file with a space came down just fine).

Are you sure someone else hasn't deleted those files from their repo & pushed the deletion to the repo from which you're pulling?

link|improve this answer
edited my question with more info. thx – Jonathan Day May 13 '11 at 13:29
and I see can the file in the origin using the Github repo browser, so it definitely exists. – Jonathan Day May 14 '11 at 1:49
feedback

Your Answer

 
or
required, but never shown

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