How can I find the delta / diff version using svn http-based browser?

I am working on a project to link a questionnaire to our version control system.

I found that you can find the specific revision in the svn web browser as follows:

https://svn-repo/!svn/bc/100/

or

https://svn-repo/?p=100

or

https://svn-repo/?r=100

But this shows you the whole structure of the repository during this revision. The ultimate goal is to create a link to the URL that the browser can click to see the changes made by the revision. Is it possible? I can't seem to find anything.

+6
source share
1 answer
  • I did not know that we can return to the default browser, thanks for the help
  • You can see one file in any edition, just add the file name to the URL, examples of one file: R28 vs Trunk
  • For diffs, I'm afraid you need to use an additional web interface ( WebSVN is a good choice)
+3
source

Source: https://habr.com/ru/post/907424/


All Articles