How to compare local copy of a file with latest one in Subversion using Tortoisesvn? I have all my files committed but there seems to be a difference somewhere and I am trying to find it.
views:
30answers:
4The option you're searching is called "Diff".
This feature shows you both versions of the same file (local copy and latest in repository), highlighting any difference between them.
You right-click on the file you want to compare, expand TortoiseSVN and choose Diff.
If the file you have locally was edited since the last svn update you performed, it will have a red exclamation mark watermark on it's icon, if it doesn't then maybe you need to run svn update again and check the differences again.
Right click on the checked out folder and do "check for modifications" from the TortoiseSVN menu - this shows you all the files that have not yet been committed.
If you are paranoid that there are differences when someone else checks out the code you could just do a 2nd check out to some other folder and use a tool like kdiff3 to compare the two.