Is there any way to delete file from svn repository including all its history? This issue emerges when I want to get rid of large binary file residing in repo.
I know only one approach that might help in this situation:
- Dump all repo with the help of svnadmin utility.
- Filter dumped file with grep. Grep should use filename and write in to the other dump-file
- Import last dump-file with svnadmin
But this is too complicated and unreliable. Maybe there is another solution?