Possible Duplicate:
SVN diff across 2 different repositories

How can I compare a working copy with a repository different than the one which the working copy is associated?

I need this comparison, because I was forced to apply some changes directly on the production server (current version connected to a tag) and I would like to check if those changes were already applied on trunk.

link|improve this question

44% accept rate
3  
You could always create a new working copy of the trunk and compare the two with a diff tool. I use winmerge for example. – yms Aug 17 '11 at 14:26
Is it a different repository or just a different branch/tag within the same repo? – Antonio Pérez Aug 18 '11 at 8:57
feedback

closed as exact duplicate by Shawn Chin, manojlds, John Flatness, Zac Thompson, Graviton Aug 18 '11 at 14:24

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

2 Answers

Checkout both and use a diff tool like Kdiff3

link|improve this answer
Isn't possible to compare them directly using the svn cli? (comparison between the working copy available on the production server and a specific repository identified by its url) – Rui Gonçalves Aug 17 '11 at 14:25
I am not aware of any. In SVN you can use partial checkout. So you just need to checkout that specific directory. – shariat Aug 17 '11 at 14:28
There are many local changes. I would have to checkout the entire project. – Rui Gonçalves Aug 17 '11 at 14:32
feedback

If you are going to compare against a specific revision then you can create a patch of the working copy and a patch of the specific revision in the other repo and then do a diff to see if the patch files match or not.

Or if you have TortoiseSVN installed you can do the following:

Difference to another branch/tag

If you want to see what has changed on trunk (if you are working on a branch) or on a specific branch (if you are working on trunk), you can use the explorer context menu. Just hold down the Shift key while you right click on the file. Then select TortoiseSVN → Diff with URL. In the following dialog, specify the URL in the repository with which you want to compare your local file to.

Source: Viewing Differences

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.