Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Do you mind using the command line client? You might have to install it.</p> <pre><code>C&gt; REM Doing below, so it'll fit in the comment box C&gt; set PROJ_URL=http://svn/repo/proj1 C&gt; svn diff --summarize %PROJ_URL%/tags/REL-1.0 %PROJ_URL%/tags/REL-2.0 </code></pre> <p>That'll show you the difference between the two URLs without the deep program details.</p> <hr> <p>If you're talking about taking a log between the two revisions (seeing who changed what, etc), you can use <code>svn log -v --stop-on-copy</code> to find the revision and source of that tag:</p> <pre><code>C&gt; svn set PROJ_URL=http://svn/repo/proj1 C&gt; svn log -v --stop-on-copy %PROJ_URL%/tags/REL-1.0 r72342 | weintraubh | 2010-12-01 13:02:00 -0500 (Wed, 01 Dec 2010) | 2 lines Changed paths: A /tags/REL-2.0 (from /trunk:72399) Release 2.0 r74384 | weintraubh | 2010-12-01 13:02:00 -0500 (Wed, 01 Dec 2010) | 2 lines Changed paths: A /tags/REL-2.0 (from /trunk:74383) Release 2.0 </code></pre> <p>Ah! We now see that both tags come from trunk and REL-1.0 is revision 72399 and REL-2.0 is revision 74383</p> <pre><code>C&gt; svn log -r72399:74383 -v [listing of all changes...] </code></pre> <p>I actually wrote a PHP script to do this, so I could automatically produce a webpage listing the differences. I would gather the programs that were changed, and the Jira defects. </p> <p>Unfortunately, I was laid off from that company, and then it went belly up a few weeks later. <em>(Moral to companies: Lay me off at your own risk.)</em> I can't get you the actual PHP code. However, it didn't take me more than a couple of days to write, and I don't even know PHP.</p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload