Rahul Tungar
Rahul Tungar

Reputation: 7

Tortoise Svn shows all Unmodified files as Modified

I am using Tortoise SVN and Visual SVN Server.

Here is how I am using SVN:

  1. Export Code from Windows7 System and then Copy all code Files to my Fedora System
  2. Make required changes.
  3. Then I Checkout on Windows7 System.
  4. Then Copy All code files from Fedora System to windows7 system.
  5. Then paste in Folder where I checked out.

At this point when I check for modified files. SVN shows me all files as modified, even though they are not modified by me.

Also when I diff unmodified files by me no change is shown, but svn shows that file with red icon.

Could someone please explain the solution this issue?

Note: On Fedora System I am using QT Creator to edit code files. This issue observed with .txt, .cpp, .c files only not with qt ui files.

Upvotes: 1

Views: 482

Answers (1)

Gwen
Gwen

Reputation: 1450

You can find here how TortoiseSVN finds out if a file is modified.
You should look at the file metadata (date of creation/modification, ownership, etc.)

Edit: If you have issues with end-of-line markers, you can modify SVN behaviour with the svn:eol-style property. See this page for Tortoise configuration.

Upvotes: 1

Related Questions