One of my teammates has asked if it is possible to export from one SVN to another, all while maintaining history.
To me, this seems like it would be a common request.
So: Is it possible to migrate between SVN repositories all while maintaining history?
It is important to note that we do not have svnadmin access on the Source, but we do have that on the Destination.
If this comes down to just checking out each revision from the source, and checking it in to the destination, we would be OK with that, as long as there was an automated process for that.
EDIT: I forgot to mention that the destination repo is on windows.
[Edit: The original reply below is from pre SVN 1.7, and there this was the best way to solve the problem (although it is not the primary use case of
svnsync
). In SVN 1.7 client or later there is thesvnrdump
tool that does more directly what you are trying to achieve)]use svnsync to synchronize the source to the destination (needs admin access to the destination repository or at least a way to add hooks, but no special access to the source repository). If the destination already has revisions, sync the source to a temporary repository, and then use
svn-merge-repos.pl
to merge the two local repositories.If you need only a version control repo with full changeset, you can use bzr with bzr-svn plugin. When you checkout a svn repo, everything will be syncronized.
You can use git-svn (or perhaps another SCM system) to accomplish this task.
The steps would be:
Referenced: http://blog.neutrino.es/2012/git-copy-a-file-or-directory-from-another-repository-preserving-history/
I had a similar need (hence visited this page) and ended up writing my own program to do the work. Thought the tool may be useful to others who are still looking for a solution:
If anybody is interested, check it out here
The way to typically achieve this is the
svnadmin dump
command. If you don't have svnadmin access then I would ask the person that does if they can supply you with a dump. This will make the process of importing much easier as well.Are you on a shared repository currently? This might make the person that owns the repository leary of giving you a dump, since it will be a copy of the entire repository, not just your piece of it.