I am trying to find the correct command in subversion to see a list of all files that have been changed (no need to see the changes really) between branch / tag A and branch / tag B, etc.
What about svn diff --summarize <A> <B>
svn diff --summarize <A> <B>
You can also use svn diff --helpto get additional parameters
svn diff --help
and svn status --help, to get an explanation of all the possible letters of the description of the modification ('A', 'M', etc.)
svn status --help
SVN DIFF is what you are looking for. Must be able to specify URLs for different branches
svn diff http://domain.com/tags/A http://domain.com/tags/B
Source: https://habr.com/ru/post/1745486/More articles:TeamCity build number of independent artifacts - continuous-integrationAndroid suddenly stop playing - androidCreate all unique crosswords - crosswordVisual Studio Voodoo Debugger - debuggingInsert text into text field using .load () in jQuery - jqueryToolbar - .netPgSQL query error - sqlWhat is the best practice of including jQuery ext functions? - jqueryRuby on Rails - adding a variable to parameters [] - variablesHow can I specify different layout sizes for different densities - androidAll Articles