In our group we have a repository, we would like to move the repository, but in he meantime also we would like to delete some folders and re-indexing the revision(delete all the revision numbers which are related to the deleted folder) Is this possible? If yes How?
You should take the repository offline by stopping either svnserve or Apache.
Then dump the repository content to file using a command like
After that you can split the dump by filtering out the relevant changes by using the
svndumpfilter
tool. In the example below "my-branch" is the path within the repository that you want to put into a separate repository:Then you can create the empty repositories for the filtered dump files and import the dump data:
You can find further information in the Repository Maintenance section of the excellent Subversion Book.