On Fri, Jun 11, 2010 at 2:03 PM, Ryan Schmidt < subversion-20...@ryandesign.com> wrote:
> > On Jun 11, 2010, at 07:01, David Aldrich wrote: > > > I would like to show log information for a branch, to show when the > branch was created and when merges from the trunk were committed to the > branch. > > > > I have successfully used this command: > > > > C:\MyProj\branches>svn log --stop-on-copy TRY_7June2010 > > ------------------------------------------------------------------------ > > r2529 | da | 2010-06-07 10:17:01 +0100 (Mon, 07 Jun 2010) | 1 line > > > > Created branch TRY_7June2010. > > > > to show when the branch was created, but how can I make svn also show the > merge that I committed to this branch at r2535? > > "svn update" first. > Or: svn log -rHEAD --stop-on-copy TRY_7June2010 ?