M Rajoy
M Rajoy

Reputation: 4114

Transferring local svn to remote forge

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

Answers (2)

Albin Sunnanbo
Albin Sunnanbo

Reputation: 47068

If your new svn host supports svnadmin load that is the most straight forward and compatible way to move a repository.

  1. Export your current repository to a file with svnadmin dump.
  2. Copy the file to your new host.
  3. Load the file into an empty repository with svnadmin load.

Upvotes: 0

orip
orip

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:

Upvotes: 2

Related Questions