I am using VS 2015 Community and Reshaper. My problem is that after pull or commit (using tortoise git client) VS still still shows "pending edit" on almost all files. "Compare with unmodified" show no change not event whitespaces. This getting me crazy because I want to see "pending edit" only on files I am actually working on ...
EDIT: I just find that problem is with CRLF setting in git. I need line end with CRLF but git returns LF.
EDIT 2: After new informations I did following step which works for me:
git config --global core.autocrlf true
git rm --cached -r .
git reset --hard
More about line endings for windows here.
I have heard of this before being caused by the "end of line" character in your files.
Try running this:
git config --global core.autocrlf false
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With