tags:

views:

178

answers:

1

I wish to display the currently checked out file and the same file in its immediate previous version so that the user can get a chance to compare the two files manually and later merge the changes to the Subversion(SVN) repository. Is there a sample code to do that using Sharpsvn DLL ?

+1  A: 

That is what svn diff is for.

Edit: Look into SvnClient.DiffSummary.

RedFilter
Thank you for this information. My aim is to display current (Head) revision and the previous revision of the file in adjusent edit boxes as nicely done in TortoiseSVN.