Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a way to completely erase a Subversion repository so that users can't access to old revisions?

PS: I have root access on the repositories machine.

share|improve this question
Is there anything you want to keep in this repository? Or is it just a case of starting again from scratch? – Jim T Feb 25 '09 at 15:57
I don't need to keep the old data, I just want a new repository without actually recreating a new one. – tunnuz Feb 25 '09 at 16:01
It really is easier to create a new repository. – David Zaslavsky Feb 25 '09 at 16:10

4 Answers

up vote 4 down vote accepted

Just remove the root folder of the repository, but saving the conf/ folder it has inside. Then, create a new repository with svnadmin create, and overwrite the old configuration folder on it.

EDIT (for completeness): as Tunnuz and Jim T have pointed out, you may want to save also the contents of the hooks/ folder if it contains custom scripts.

share|improve this answer
This would lose any active hooks in the hooks directory. I think this advice, extended to also save the hooks directory, is what you want to do. – runako Feb 25 '09 at 16:11

Not really, if you want to keep the configuration, MOVE all the contents of the repository directory to a safe place, then use svnadmin to create a new blank repository, then copy your conf and hook directories back in so that the users and automation scripts are replaced.

Your repository will then be blank, starting again from revision 1.

share|improve this answer

Delete the folder on the HDD? Subversion repositories are stored in folders... Alternatively you can change the configuration to deny all access to everyone (the method will vary depending on how the authorization is configured).

share|improve this answer
The Subversion repositories have a complex structure, they aren't just a folder. Which one should I remove? How do I know that I won't corrupt the repository configurations? In other words: is there a command to accomplish that? – tunnuz Feb 25 '09 at 16:00
They ARE a folder... There is a root folder which holds all your repos and under it you have a subfolder for each repository, in example you can delete C:\Subversion\repos\{name} and the {name} repo will be gone. – Pawel Krakowiak Feb 26 '09 at 6:48

1.) Delete folder manually (each repository has it own folder)

2.) or use svnadmin command (svnadmin dump).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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