A remote git repository is just cloned to a local box using Atlassian SourceTree. Even no files have really been modified in the work tree, Atlassian lists
Just ran into this issue. A fresh clone would pull several files that were not only uncommitted, but also had many lines of real new code. git reflog showed nothing, it wasn't an actual commit so a detached HEAD was out of question.
After about an hour of investigation we found the cause. One of our *nix developers had, most likely mistakenly, added files to a folder that was the same name as the one intended but had different capitalization. *nix environments were able to handle this new folder easily, but Windows (due to its case-insensitive nature) merged the two folders.
So, for example, if you have two folders, test and Test, each with a file.txt inside and those two file.txt files aren't identical, then Windows will actually copy/replace one of them (not sure which order it clones folders in) thus "changing" the file and creating uncommitted changes on "Test/file.txt" directly after a fresh install.
Example:
test/
--file.txt (with contents of "This is a commit")
Test/
--file.txt (with contents of "This is a commit with some changes")
This will always show new uncommitted changes consisting of adding the words " with some changes" to Test/file.txt when cloning on a Windows machine while *nix-based machines won't have an issue.
This doesn't necessarily address the OP's issue, but directly relates to the question in the title. Hopefully that helps someone out there.
Normally this line in .gitattribute
:
* text=auto
automatically ensures that all files that Git considers to be text will have normalized (LF) line endings in the repository, even when git config core.autocrlf
is set to false
(default). Therefore Git automatically changes the files according to these rules.
So you've the following possibilities:
assume the normalization changes are correct (as far they're done to the text files) and simply commit them, e.g.
$ git diff
$ git commit -m "Introduce end-of-line normalization" -a
remove/disable auto normalization from the .gitattribute
file and reset the files,
remove the index and re-scan the files, e.g.
$ rm -v .git/index # Or: git rm --cached -r .
$ git reset --hard # Rewrite the Git index. Or: git add -u
alternatively, whatever you do, try with force (-f
), e.g. git pull origin -f
, git checkout master -f
, etc.,
git
command-line instead, since it could be a problem with SourceTree App it-self.See: Dealing with line endings at GitHub docs.
I still don't understand it 100%, but for us the issue was the * text=auto
in the .gitattribute
file in the repository. I checked, and we for sure have core.autocrlf=true
set in every place it can be set for my user on a Windows PC. I knew it wasn't a SourceTree issue either, as TortoiseGit and just Windows Git (msysgit) all had the same "issue" for this repository. Really odd behavior - I would clone the repo one time and immediately see 11 "different" files, then I would delete and start over and the next clone would have 14 "different" files.
Commenting out the * text=auto
in the .gitattribute
file of the repository fixed everything. Its almost like text=auto
does not behave the same as autocrlf=true
and the latter is disabled if the first is set in the .gitattribute
file. But that is not what every guide online seems to indicate.
I'm one of the SourceTree developers (I develop the Mac version of the product, actually), so hopefully I can be of some help.
Windows machines convert CRLF to LF when committing and LF to CRLF when checking out. autocrlf
makes sure everything is LF within the repository. The option text = auto
is the one we're interested in though as it says in the docs:
When text is set to "auto", the path is marked for automatic end-of-line normalization. If git decides that the content is text, its line endings are normalized to LF on checkin.
So you see on checkin it will say "Hey, I need to normalise these line-endings because they're not in LF format, but in CRLF." and thus modifies your working copy to do the work it's expected to do. Usually on Mac/Linux you wouldn't need to normalise because everything is in LF, but Git will do a check because you might've checked out from a repository that was previously developed on Windows, or perhaps in an editor that was using CRLF instead of LF.
So in short, you'd probably want to re-commit all of those files as they should be in LF format, but also make sure autocrlf = true
(edit, always to true!) in your Windows repository as it says in the docs:
If you simply want to have CRLF line endings in your working directory regardless of the repository you are working with, you can set the config variable "core.autocrlf" without changing any attributes.
Although imagine that previous quote was when setting autocrlf
for a specific repository as well as globally.
Hopefully that's of some help, if not, feel free to ask more questions!
Here's a good SO post re: line endings: Why should I use core.autocrlf=true in Git?
EDIT
Based on the above answer we need to make sure of a few things here.
.git/config
autocrlf=true
text
option to unset
. Add this option if a global git config has it set to a value you don't want.text=auto
and make sure LF is used across the board. This is why problems like this creep in; because your git config's differ or because the initial project/git setup on Windows assumes CRLF when your Mac assumes LF.I added both following lines to the config file. The other thing I did was click on the "Staged Files" checkbox and then unclick it, and everything refreshed itself. Good luck.
text = auto
autocrlf = true