Hi
I have a local repo and have pulled from several remotes. I am finding that I have about 15 files which are modified. Some of them have come from a remote and others I think, though I am not sure, may have been modified prior to pulling from a remote, but never committed (or else they were modified and committed locally but then have been modified via a pull).
The problem is that I don't know how to begin to work out what has happened to these files which don't get removed when I do a git reset --hard HEAD. I've tried to commit them and then rebase the commit out as well but, the files just reappear in the working tree. So it seems that Git just isn't going to let me get rid of them. If I compare with base I don't see any differences. I thought it may be line endings but my diff/merge prog indicates that the line endings are all the same (crlf).
So how do I go about working out why git won't let me get rid of them?
Many thx
Simon