How do I get a pretty visual diff for svn?

Viewed 39275

I want tkdiff (or something like it) to display my 'svn diff' so that I can switch files in the tkdiff interface itself.

(I'm using a mac.)

9 Answers

When you type "svn help diff", you will get an option called "--diff-cmd ARG". Here is a simple example to use tkdiff to see the changes from the earlier version.

svn diff --diff-cmd tkdiff adc_ctrl.sv -r 768

Here, 768 is the svn revision number.enter image description here

Related