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

RE: Branch changes

From: Andrew Reedick <Andrew.Reedick_at_cbeyond.net>
Date: Tue, 8 Oct 2013 10:59:35 -0400

> -----Original Message-----
> From: John Maher [mailto:JohnM_at_rotair.com]
> Sent: Tuesday, October 08, 2013 10:14 AM
> To: Andy Levy
> Cc: Subversion help
> Subject: RE: Branch changes
>
> Thanks for your reply Andy, that was helpful. For anyone else interested, to get the revision where the branch was created you can do this:
> "svn log --verbose --stop-on-copy URL_TO_BRANCH"
> The last line indicates what revision the branch was created.

Unless, of course, you renamed your branch, e.g. 'svn mv rel-1.2 rel-2.0', or if you renamed/moved the parent directory components, e.g. 'svn mv /branches /project1/branches' in which case you will need to run the 'svn log --stop-on-copy -r REV-1' iteratively (where 'REV-1' is the revision returned by --stop-on-copy minus 1,) until you get to the "real" branch point.
/pedantic

Also, if you want 'svn log --stop-on-copy' to return just a single revision, you can use --limit thusly:
    svn log -v -r1:HEAD --stop-on-copy --limit 1 ^/branches/my_branch
Received on 2013-10-08 17:01:22 CEST

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.