[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Re: Delivery Script

From: Ryan Schmidt <subversion-2008a_at_ryandesign.com>
Date: Tue, 26 Feb 2008 17:39:51 -0600

On Feb 26, 2008, at 11:22, Jo Armb. wrote:

> is there some script/tool/mechanism for a windows SVN (with
> tortoise) platform which generates a summary of all commit comments
> of two /tag directory?
> as far as I figured it out, i just can generate a file difference...

It sounds like you're asking "What are the log messages between tags
TAG1 and TAG2?" And the answer is Subversion doesn't give you an easy
way to answer that.

Tag TAG1 was created at some point in time TIME1 and tag TAG2 was
created at some later point in time TIME2. If both tags were created
from a common ancestor like trunk, then the question becomes "What
are the log messages on trunk between TIME1 and TIME2?"

So you need to find TIME1 and TIME2, and these are easiest expressed
in Subversion as revisions. You find these by running "svn log --stop-
on-copy" on tags TAG1 and TAG2 to determine the revisions REV1 and
REV2, respectively, in which they were created. Then you run "svn log
-rREV1:REV2 url://to/trunk" assuming trunk is the parent from which
both TAG1 and TAG2 were created.

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: users-help_at_subversion.tigris.org
Received on 2008-02-27 00:40:35 CET

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.