0

I deleted a file from svn repository. It is big size file (about 460MB)

  • In eclipse - subclipse(SVN Repository) - select file & click right - delete

but, the storage space size is the same.

I use AWS EC2, and Ubuntu.

How can I recover my storage's capacity?

  • possible duplicate of [svn repository is showing very large size](http://stackoverflow.com/questions/12367311/svn-repository-is-showing-very-large-size) – bahrep Jan 20 '15 at 09:15

1 Answers1

3

You are using a version-control system, so when you remove a file via the client, the file still exists in repository history. You can't remove the file using client tools. See the official Apache Subversion FAQ: How do I completely remove a file from the repository's history?

You can filter the history of the repository to get rid of the file. See SVNBook | Filtering repository history.

bahrep
  • 29,961
  • 12
  • 103
  • 150