I am getting strange results from svndumpfilter - I need to obliterate 24 instances of 2 specific files in our repo, scattered amongst many branches. I am running the command as documented like so:

e.g.

type dumpfile | svndumpfilter exclude foo1/bar.dat foo2/bar.dat  > filtered_dumpfile

However, it seems the filtered dump file is not removing all of the nodes as expected but only removing 2. I have confirmed this by using svndumptool diff on the two dump files and after rebuilding the repo the excluded files are still present.

I'm sure I haven't missed any instances of those files as I have used svnlook tree to locate all paths in the repo. Also I have confirmed that leading slashes are consistent in the command and in the dump file.

Anyone have any ideas?

link|improve this question
feedback

1 Answer

You can try to do as follows, maybe it will help:

type dumpfile | svndumpfilter exclude foo1/bar.dat | svndumpfilter exclude foo2/bar.dat  > filtered_dumpfile

or this way:

svndumpfilter exclude `cat filterlist.txt` < old.dump > new.dump
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.