On Thu, Jun 16, 2016 at 7:42 PM, Doug Robinson <doug.robin...@wandisco.com> wrote: > > One thing to remember: if revision properties are being changed (i.e. the > pre-revprop-change hook allows them) then those changes will need to be > captured and replayed into the loaded repository "somehow" or changes to > revisions prior to -rNEXTREV will be lost. >
Ah yes, good catch. That's indeed something to watch out for, if your repository is still writable with revprop-changes enabled, while you're running the initial dump+load. So either make sure the pre-revprop-change hook is "closed" while you're running the initial dump+load, or keep a log of all changed revision properties (write them to a log file from your post-revprop-change hook or something) and transfer them to the new repository afterwards (for instance using 'svnlook log' and 'svnadmin setlog'). -- Johan