tags:

views:

48

answers:

2

We committed some times in /foo path. Now we want to start the /foo history from scratch. How to delete /foo and his history from svn? It is possible?

+3  A: 

This is not made easy by SVN, as it is designed to preserve data at all costs, not destroy it. There is no harm in leaving foo's history in the repository.

You can, however, do this using svnadmin dump. You will find some details here:

http://stackoverflow.com/questions/560684/svn-obliterate

RedFilter
+1  A: 

If you delete the foo path, and create it later, it will not show the history of the old foo. But the history of the old foo path will remain, as answered by RedFilter.

Sander Rijken