vote up 1 vote down star

I have a Subversion repository that contains the externals and some files to start creating a new site, such as a basic login setup based on libraries.

What I'm wondering is if there is a way to "copy" this repository into another that will keep the externals so I don't have to set them up again? I'm not worried about keeping the history. This would be similar to performing an export and then setting the externals, but would be a one step process. Is there a way?

flag

70% accept rate

2 Answers

vote up 6 vote down check

The commands you need are:

svnadmin dump and svnadmin load

link|flag
Would you only dump the head version, such that it would include everything as it stands at that moment? – Darryl Hein Mar 25 at 7:19
no, make your template repository and then dump it and save the dump file. each time you create a new repo, load in the dump. – nickf Mar 25 at 7:24
I actually just tried it with the last revision and it worked perfectly! – Darryl Hein Mar 25 at 7:28
make sure you use --ignore-uuid for the 'svnadmin load' command! Otherwise you'll end up with multiple repositories that have the same uuid, which will get you into troubles later. – Stefan Mar 25 at 9:23
vote up 4 vote down

Please, make sure your new repository has a new UUID. If you just copy your repository some subversion commands will see the repository as the same.

(See svnadmin help setuuid if you need to change your uuid).

Keeping the same UUID will break some forms of caching, intra-repository merges and probably even more in future Subversion versions. (The UUID is the primary key to identify what is from a different or the same repository)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.