On Mon, Jul 25, 2011 at 1:29 PM, Kent Rollins <kent.roll...@gmail.com> wrote: > Is there a way to configure Subversion to *not* store a history on > certain files? I have a few people checking in some large binaries > and we really don't need to store history on them. We only need the > last committed version of the file. The repository is growing > unnecessarily large.
The short answer from my experience is "no". Eliminating the old histories, or even expired tags that might have such binaries, is not supported. Histories are considered quite important, and efforts to discard them or even to eliminate inappropriately stored binaries or private data have proven to be very awkward. (Look up the old "svn obliterate" feature requests for some history on that.) A better approach to this might be to use "svn:externals" to point to a separate repository, or set of repositories, which can be updated and discarded as necessary.