Re: point of time dump?
From: <jblist_at_icloud.com>
Date: Tue, 19 Jan 2016 16:44:36 -0700
> On Jan 19, 2016, at 4:27 PM, Eric Antonio Maquiling <ericantoniomaquiling_at_gmail.com> wrote:
Ok, this is still workable. The first option assumes that your auditors have no clue how to use SVN and would be fine with raw source code minus all the nice meta-data provided by subversion. The second option assumes your auditors are at least willing to use SVN tools to browse a repository.
Option 1) You will still need to automate the export of every revision from 1 to the end date you have in mind.
Something like this (choose your favorite scripting language):
for R in 1..X (where X is the revision from June of last year)
This will export each revision into its own folder, named with the revision number from the repository. You will lose all meta data with this method: Who changed what, and what the commit log was for each commit will be lost. Depending on how old and how big your repository is, this might exceed the capability of your local machine and the capacity of optical storage media.
Option 2) On the other hand, if your auditors are familar with subversion and would like a local COPY of the repository so that meta data are preserved, you might have better luck using "svnadmin dump -r1:X" to dump out the range of revisions up to X, or June of last year. Then use "svnadmin load" to create a new subset repository containing only the revisions in question. This duplicate, subset repository could be burned to optical media and browsed using tools such as Tortoise.
|
This is an archived mail posted to the Subversion Users mailing list.
This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.