I have been working on a project and edited a bunch of files in a folder. This folder resides on my local and not watched by GIT. I usually copy the entire folder into another computer that is watched by GIT to be pushed to the repo. The problem now is that a bunch of files are being shown as changed due to line endings and spaces being shown up, as it's being copied from windows to a linux box.
I did the following command: git diff --stat to show all the files changed with the # of lines/characters changed.
As you can see many of these files have zero changes done to them. However, they still show up in my git status modified section.
How do I remove or revert these back to normal as I never changed anything with these files?