Reputation: 6845
Is there a simple way to restart your repo to revision 0? For instance, I loading in a dump file which introduced a series of revisions. Now, I want to revert my repository back to revision 0.
My attempt:
svnadmin create loader
svnadmin load loader < some_dump.dump
svnadmin dump -r 0 > rev0.dump
svnadmin load loader < rev0.dump
However, nothing happens when I do the steps above. Why is this? Is it because loading a dump doesn't overwrite a previously loaded dump when the revision numbers overlap?
Upvotes: 1
Views: 135