2

Is it possible to delete a file from subversion repository completely including the history? The problem are illegal files without the needing copyright.

How can I do it?

user
  • 86,916
  • 18
  • 197
  • 190
Horcrux7
  • 23,758
  • 21
  • 98
  • 156

1 Answers1

5

No, sorry. This is the much planned but not-yet-implemented svn obliterate feature on the mailing list.

The best you can do is to take a complete repository dump with svnadmin dump, filter out the files you want to remove and then svnadmin load it into a clean repository. There is a script svndumpfilter included in the distribution; I don't think that can filter out individual files as-is but it's a good starting point. As far as I remember the script can't cope with --deltas dumps, though, so you might have to stick with --incremental.

Rup
  • 33,765
  • 9
  • 83
  • 112