I have a repo that has two files that supposedly I changed locally.
So I\'m stuck with this:
$ git status
# On branch master
# Changed but not update
What are the line endings in the files? I'm betting they're CRLF. If they are, check out this guide: http://help.github.com/line-endings/
In short, you need to make sure git is set to convert the line endings to LF on commit, and then commit those files. Files in the repo should always be LF, files checked out should be the OS's native, assuming you set git correctly.