On Tue, Jul 2, 2024 at 11:23 AM Roshan Pardeshi <roshan.parde...@ncdex.com> wrote:
> Hello, > > We require to delete the branches(folder and files) from SVN server to > release some space from disk as we are facing space crunch on disk in SVN > server. > > Please help on this as what command we should use to delete the > branches(folder and files). We have used below command but its not working > > 1. svn delete branch name > 2. svnadmin delete branch name > 3. svn rm branch name > 4. svnadmin rm branch name > 5. del branch name > > Regards, > Hi, Please note that deleting a branch in Subversion does not remove the information from your server, nor free any disk space. Since Subversion always keeps historical information, the data will still be there, even if it appears to be gone moving forward from the latest revision. It is always possible to update to an older revision to make the deleted data reappear. This is the purpose of version control. If you can tell us a little more about the Subversion server and the repository, we can suggest possible steps you can take. Specifically: What version of Subversion is used on the server? How big is the repository? How many revisions in the repository? What format is the repository backend? (bdb or fsfs?) Thanks, Nathan