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.
|
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. |
|||||||
|
|
Just remove the root folder of the repository, but saving the EDIT (for completeness): as Tunnuz and Jim T have pointed out, you may want to save also the contents of the |
||||
|
|
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. |
|||
|
|
|
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). |
|||||
|
|
1.) Delete folder manually (each repository has it own folder) 2.) or use svnadmin command (svnadmin dump). |
|||
|
|