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

Re: svn log -v path problems

From: Daniel Shahaf <d.s_at_daniel.shahaf.name>
Date: Thu, 9 May 2013 19:18:50 +0300

Michael Decker wrote on Thu, May 09, 2013 at 12:00:12 -0400:
> Users,
>
> I am working on extracting the the files that are added and deleted using svn log -v from the koffice subversion repository.
>
> The repository is : svn://anonsvn.kde.org/home/kde/trunk/koffice/
>
> The specific problem is at.
>
> svn log -v -r 438825
>
> The problem is that a directory was renamed. So it lists it as deleted and added.
>
> D /trunk/koffice/krita/plugins/filterspreview
>
> A /trunk/koffice/krita/plugins/filtersgallery
>
> There were other files in the directory that were deleted, but they have the wrong directory name
> D /trunk/koffice/krita/plugins/filtersgallery/kis_dlg_filterspreview.cc
>

Why do you think that is wrong? That's a perfectly valid history. Compare:

svnadmin create r
svn co file://`pwd`/r wc
cd wc
svn mkdir A
touch A/mu A/mu2
svn add A/mu A/mu2
svn ci -mr1
svn up
svn rename A B
svn rm B/mu B/mu2
svn cp file://`cd .. && pwd`/A/mu2_at_1 B/mu2
svn ci -mr2
svn up
svn log -qvr2

> Thank You
> Decker
Received on 2013-05-09 18:19:27 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.