I'm working on the trunk of a project locally and need to checkout a remote branch. My working copy is fully up-to-date, and i run
git checkout -b RC1 origin/RC1
After that I run
git status
And it tells me I have about 30 files that are modified and untagged. I open a visual interface to view the changes in the files and they are 100% the same. When I run
git diff
I get:
The file will have its original line endings in your working directory. warning: CRLF will be replaced by LF in src/private/library/arialunicid0-chinese->traditional.php.
My question is why are all of these files considered to be modified? Shouldn't my branch be clean, with no changes if I just checked it out?