I read some question/answers here about how to do it using svnadmin/dump etc. Actually I did not understand properly what I'm supposed to do.

http://stackoverflow.com/questions/939963/how-to-migrate-svn-to-another-repository

I think I have to do some sort of dump from the Google code repository using svnadmin, but where do I get this svnadmin?

I use TortoiseSVN 1.6.3 on WXP and there is no svnadmin.exe command in all my C folder, where am I supposed to download these applications?

Thanks!

link|improve this question

@Neil: I read that question/answer too, but even the proposed links refer to pages form which is not clear what you have to download. – Marco Demaio Apr 18 '10 at 13:38
feedback

3 Answers

You can use svnsync to make a 1:1 copy of a remote svn repository, including history and properties. You do not even need write access to the repository that is being copied.

link|improve this answer
Is this command in TortoiseSVN? – Marco Demaio Jun 29 '10 at 17:15
I don't know. You can download Windows binaries of Subversion from subversion.apache.org/packages.html#windows (the CollabNet mirror requires registration but works fine for me). – TomA Jun 29 '10 at 22:47
@Marco did you try it? – eglasius May 11 '11 at 21:49
@eglasius: no, not yet, I wanted to move out form Google code, but I have no time to look into this now. – Marco Demaio May 18 '11 at 14:37
feedback

The reason you do not have svnadmin is that it is a server-side program, not a client-side program; it is used on the same machine on which the Subversion repository is hosted. You will not be able to run svnadmin without SSH'ing into the host computer. Consequently, I don't think you can copy the project repository from Google Code, since you will not be able to run "svnadmin dump" from the Google Code server computers. The best you will be able to do, AFAIK, is to use svn export and svn import, which discard history.

link|improve this answer
@Michael You can use it client-side. – anon Apr 18 '10 at 11:15
@Neil, you can use it client side, but it won't help, since you need to specify the path to the repository on the local filesystem. – Michael Aaron Safyan Apr 18 '10 at 11:16
+1 and thanks so much for clarifying me this point in 1 minute. – Marco Demaio Apr 18 '10 at 13:37
feedback

You can actually download an svn repo history from Google code via svnsync. See this link from Google http://code.google.com/p/support/wiki/SubversionFAQ#How_do_I_download_my_Subversion_history?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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