Reputation: 4114
Okay, so I developed this program and used SVN for revisions, on a local repository.
Is it even possible to transfer this information to a forge, which is also svn based?
I've been told I need to use git-svn, in which case I would love to have some guidance on how to use it, under Windows, preferrably.
Thanks in advance, --Gabriel
Upvotes: 0
Views: 188
Reputation: 47068
If your new svn host supports svnadmin load
that is the most straight forward and compatible way to move a repository.
svnadmin dump
.svnadmin load
.Upvotes: 0
Reputation: 75557
For transferring your repository once, or to do it in one direction only, you're looking for svnsync
, which should come as part of your Subversion install.
EDIT:
svnsync
'd.svnsync
.Upvotes: 2