Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm having an issue with a repository at the moment, and though my git-fu is usually good, I can't seem to solve this issue.

When I clone this repository, then cd into the repo, git-status shows several files as changed. Note: I haven't opened the repo in any editor or anything.

I tried following this guide: http://help.github.com/dealing-with-lineendings/ but this didn't help at all with my issue.

I have tried git checkout -- . many times but it seems not to do anything.

Any help/ideas would be greatly appreciated

Update 1: I'm on a mac, and there are no submodules in the repo itself.

Update 2: the filesystem is "Journaled HFS+" filesystem on the mac, and is not case-sensitive. The files are one-line and about 79K each (yes, you heard right) so looking at git diff isn't particularly helpful. I have heard about doing git config --global core.trustctime false which might help, which i will try when i get back to the computer with the repo on it.

Update 3: changed details of filesystem with facts! and, I tried the git config --global core.trustctime false trick which didn't work very well.

share|improve this question
1  
What does git-diff tell you? – Josh Lee Feb 15 '11 at 22:56

3 Answers

up vote 12 down vote accepted

I got it. All the other developers are on ubuntu (i think), and thus have case-sensitive file systems. I, however, do not (as I'm on a mac). Indeed all the files had lowercase twins when I took a look at them using git ls-tree HEAD <path>.

I'll get one of them to sort it out.

share|improve this answer
Did they ever sort it out? I'm possibly having the same issue. – Josh Johnson Feb 29 '12 at 12:13
1  
Yeah, just get someone with a case-sensitive file system to delete all but one from each set of the files which would have duplicate filenames on a case-insensitive filesystem. – Lenary Feb 29 '12 at 22:52
Ah. In this case I don't believe it is the issue that I'm running into. Thanks for responding. – Josh Johnson Feb 29 '12 at 23:55
Just ran into the same issue since moving from Ubuntu to Mac. Thanks, your answer hit the nail on the head. Hope the upvote pushes it to the first position. :-) – chmac Apr 23 at 11:31

I assume you are using Windows. That github page you linked has the details backwards. The problem is that CRLF line endings have been committed to the repo already and because you have core.autocrlf set to either true or input, git wants to convert the line-endings to LF so git status shows that every file is changed.

If this is a repo that you only want to access but have no involvement with you can run the following command to merely hide the issue without actually solving it.

git config core.autocrlf false


If this is a repo that you will be actively involved in and can commit changes to. You may wish to fix the problem by making a commit that changes all the line endings in the repo to use LF instead of CRLF and then take steps to prevent it from happening again in the future.

The following is taken directly from the gitattributes man page and should be preformed from a clean working directory.

echo "* text=auto" >>.gitattributes
rm .git/index     # Remove the index to force git to
git reset         # re-scan the working directory
git status        # Show files that will be normalized
git add -u
git add .gitattributes
git commit -m "Introduce end-of-line normalization"

If any files that should not be normalized show up in git status, unset their text attribute before running git add -u.

manual.pdf      -text

Conversely, text files that git does not detect can have normalization enabled manually.

weirdchars.txt  text
share|improve this answer
1  
I am not using windows. – Lenary Feb 15 '11 at 22:05
1  
By default on non-Windows systems, core.autocrlf is set to false. So you shouldn't have even experienced this problem if it is caused by line-endings. Could you give more details on your specific setup such as what git diff shows for those files that git status says are modified, also what filesystem are you using? – Arrowmaster Feb 15 '11 at 22:45
updated the question with answers to these questions. Will take another look over all the details in a second or two. I'm not sure what other members of the dev team are using – Lenary Feb 16 '11 at 9:49

I had the same problem on the Mac after cloning a repo, it would assume all files have been changed.

After running git config --global core.autocrlf input it was still marking all files as changed. After looking for a fix I came across .gitattributes file in the home directory which had the following.

* text=auto

I commented it out and any other cloned repositories from now on are working fine. Hope this helps anyone out there.

share|improve this answer
Thanks! I finally found this after spending all evening toggling core.autocrlf and apply.whitespace. This worked. Thank-you. – xer0x Jul 5 '12 at 8:27
You have saved me a world of pain. Thank you! – SeanPONeil Mar 19 at 14:18
1  
The offending line in .gitattributes came from Mathias Bynen's dotfiles, in case anyone else comes across this. – SeanPONeil Mar 19 at 14:21
You're right. I was messing with the dotfiles and it must have been from his ones that made this problem appear. – adnans Mar 20 at 10:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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