We have an SVN server (v. 1.6.11) on a Linux box. One of our developers accidentally committed code to repository x, which should have been in repository y.
We now have to make available to a client, the contents of repository x, and the 'wrong' code commits need to be removed, so as not to breach confidentiality agreements.
svnadmin dump repo_y > filename.dump
.. fine. But how do I remove the incorrect code before reimporting the dump?
Many thanks.