Reputation: 455
I am using VS2010 and SVN as source control. I am facing an issue as if i am making any changes and go for show changes it is showing the whole file as changes.For example if i changes any world in my file it is showing all the file as changes. I am not able to sort it out. Please let me know if there are any setting(s) to overcome this issue.
Thanks
Upvotes: 0
Views: 113
Reputation: 97282
If you'll use GUI-differ, which can show line-ending differences in compared files, you'll see reason of your modification
You really must to check and change according to your needs svn:eol-style
property:
svn:eol-style = native
or just missing this property is most safe way
Upvotes: 2
Reputation: 14386
Check the following:
Upvotes: 1