0

So I just learned that you can view old revisions by adding the "p" parameter as such:

http://svn.example.com/repo/?p=123

Is it possible to have it display the difference between two revisions? (Similar to svn diff in command line)

1 Answers1

1

The "p" (peg revision) and "r" (operative revision) are described here:

But you can only browse versions - you cannot see "diff's" without additional packages. One good choice is WebSVN:

Check this link for more options:

Community
  • 1
  • 1
paulsm4
  • 114,292
  • 17
  • 138
  • 190
  • Thanks paulsm4. I did notice the "p" and "r" differences earlier on but whenever I use the "r" it automatically gets switched to a "p" instead so I just thought it was obsolete or something. Anyway, those links shed some light to it, although I'm still not 100% sure exactly the difference. As for the question of the topic, thanks for confirming that it's not natively possible. I'll check those third-party solutions out. Thanks! –  Aug 19 '13 at 18:04