I’ve exceeded my svn hosting limit so I need to remove all binaries and images from it. How do I issue a command to delete and ignore for example all *.jpg files ?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Simply deleting the files now won’t reclaim space. It will be marked as deleted, but the old revisions are still stored in the repository.
The only way to completely remove all traces of a file is to dump the repository (
svnadmin dump), filter out the undesired files (usesvndumpfilter), and create a new repository from the modified dump.I would talk to your hosting service, since I would expect you don’t have the required access to do this yourself.