Copy only certain SVN revisions from one repositor

rajeshkumar created the topic: Copy only certain SVN revisions from one repositor
To extract a set of revisions (nn to mm) from a repository:
svnadmin dump –incremental -r nn:mm /path/to/repository > /path/to/dumpfile.svn
The –incremental option allows you to merge this set of changes without bringing the entire baseline along with the import.

To apply those revisions to a repository:
svnadmin load –ignore-uuid /path/to/repository < /path/to/dumpfile.svn The --ignore-uuid option allows the import to strip out uuid information from the source repository. I would restrict this operation to repositories with a common revision heritage otherwise the load would probably fail. Regards, Rajesh Kumar Twitt me @ twitter.com/RajeshKumarIn

Tagged :
0 0 votes
Article Rating
Subscribe
Notify of
guest

0 Comments
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x