Perhaps you should consider managing a live copy of your site using svn export instead of checking. This would completely eliminate the problem with large files in .svn folders.
Your workflow might be like this:
- Edit files locally, test in test deployment
- Commit changes to repository
- Run a
svn export from the repository to the live system.
The disadvantage of this is that any changes that might have been made to the live system will be overwritten in the meantime. But you can organize your workflow to avoid this.
Actually, it occurs to me that I donβt know if you are worried about these hidden PDF files in your work check or when deploying the server. If this is in your working check, then I donβt know how to avoid these files using Subversion. However, if you use Git with git-svn , then Git will manage its own compressed history without full copies of all files.
source share