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