On Sun, Feb 19, 2012 at 08:37:24AM +0000, Rokhkin, IlyaX wrote: > Hi Stefan, > > Files were replaced (R) by merge, because they have 2 different ID, so one > file with its history is deleted > The idea is to find those deleted file with history
If I replace a file called 'alpha' and commit the replacement, and then view the resulting commit with 'svn log --xml -v', it shows the replacement: $ svn log -l1 --xml -v <?xml version="1.0" encoding="UTF-8"?> <log> <logentry revision="3"> <author>stsp</author> <date>2012-02-19T12:33:40.763738Z</date> <paths> <path kind="file" action="R">/trunk/alpha</path> </paths> <msg>m</msg> </logentry> </log> So when parsing the XML output you can look for 'path' entries where 'action' is 'R'. Does this help you?