svnadmin - Import an existing SVN repository to an SVN server -


i want use repository have in pc on c:\mylamerepo (which access using file:///c:/mylamerepo/lameproj/trunk/) remote server on plan configure using svn or http, want preserve "whole history" of projects have (logs, comments, etc.).

i've read questions here and here, not helpful.

you want do:

svnadmin dump /path/to/local/repo | svnrdump load http://svn.example.com/svn/repo 

assuming you're starting fresh repo on remote server side.

before can run above you'll need create repo on remote side with:

svnadmin create /path/to/repo 

you'll need configure access there's ton of information available on how that.

alternatively, if want move repo can move whole repo whatever file transfer tools prefer. if you're using bdb based repo locally (doubtful unless it's old) wouldn't recommend that.


Comments

Popular posts from this blog

java - Run a .jar on Heroku -

java - Jtable duplicate Rows -

validation - How to pass paramaters like unix into windows batch file -