Questions tagged [svndump]

63 questions
63
votes
9 answers

How do I migrate an SVN repository to another SVN repository?

Is there a simple way to copy a directory from one repository into another repository with copying all of the history?
Jakub Arnold
  • 85,596
  • 89
  • 230
  • 327
42
votes
2 answers

How do I dump one project out of an SVN repository which contains multiple projects?

I am working with an SVN repository with many projects. I need to move a few of the projects out of that repository into individual repositories, one for each project, keeping the history. I've been able to use svnadmin dump to dump the entire…
Stacey Richards
  • 6,536
  • 7
  • 38
  • 40
22
votes
4 answers

Subversion Obliterate feature

I was just thinking of writing a shell script to implement the obliterate functionality in an easy to do way (externally, using the suggested way, but automated). Here's what I had in mind: On the client svn list -R > file-list. filter file-list in…
Osama Al-Maadeed
  • 5,654
  • 5
  • 28
  • 48
16
votes
2 answers

Difference between svnrdump dump & svnadmin dump

I need a dump of a svn repository. I found two solutions svnrdump dump And svnadmin dump svnrdump dump is the same of svnadmin dump? If not, what are the differences between these two commands ?
R3tep
  • 12,512
  • 10
  • 48
  • 75
12
votes
1 answer

SVN load ./myNewRepo < ./myOldRepo.dump -- Can't open file 'myNewRepo/format'?

I'm trying to migrate an old repository (let's call it myOldRepo) to a new repository (myNewRepo). I've got an svndump of the old repo, myOldRepo.dump. I've checked out my new repository, myNewRepo. Both are in the same directory. I'm trying to use…
10
votes
1 answer

SVN Move code with history between two repositories

I have to work on two repositories and want to move one directory with code between the two while keeping revisionhistory. I read a few questions here on SO, but am still not sure which way to go. Our Repositories are HUGE (files (orkingcopy) not…
ted
  • 4,791
  • 5
  • 38
  • 84
9
votes
2 answers

Moving SVN repositories data with history as subfolders into another repository

I have some repositories, and I need to transform the content of each one in subfolders of another repository preserving their history log... How can I do that?
cmbhjv
  • 93
  • 1
  • 1
  • 4
7
votes
3 answers

How to extract an SVN dump?

I received an SVN dump file with a lot of pages (all HTML pages, and all server-side code as well) in the file. I'd to separate them out, but have no clue how to do this. I'm on windows and I don't get SVN at all.
Brooke
  • 71
  • 1
  • 1
  • 2
6
votes
1 answer

Splitting up an SVN Repository

so when trying to set up an SVN server I somehow managed to make our repositories folder a single repository, and every repository created after that was treated as part of that repository. Now I have a multiple projects living in one repository…
GSto
  • 41,512
  • 37
  • 133
  • 184
5
votes
2 answers

Merging a part of SVN repository to another repository with history

I have to svn repositories , lets say A and B. I want to add some of the directories of the B into A along with history.Is it possible to do that. To make more clear, following is the scenario. repo A repo B …
thetna
  • 6,903
  • 26
  • 79
  • 113
4
votes
1 answer

Can you access an svn dump file like an archive?

I was wondering how (if possible) i can view/extract the contents of an SVN dump file (w/o importing it into svn) Thanks.. :-)
schmoopy
  • 6,419
  • 11
  • 54
  • 89
4
votes
1 answer

Migrating part of Subversion repository to new server and repathing

I'm attempting to migrate part of an Subversion repository to a new Subversion server. http://server1/svn/repo1/path1/path2/path3 -> http://server2/svn/repo2/path3 I've created a complete dump via: svnadmin dump repo1 > repo1.dump Filtered the dump…
Bob Banks
  • 609
  • 7
  • 11
4
votes
1 answer

Recalculate checksum in SVN dump after manual changes

As we are migrating with a project to a public source hosting, I wanted to remove some “personal” information from the SVN repository. I did fine so far with removing paths or revisions using svndumptool and svndumpfilter. However I want to remove…
poke
  • 369,085
  • 72
  • 557
  • 602
4
votes
3 answers

how to clone a part of SVN repository?

I have an SVN repository, which has many directories inside. Now I would like to clone this repository, leaving only one particular directory in it. And of course I don't need any revisions related to other directories in this new repository. How…
yegor256
  • 102,010
  • 123
  • 446
  • 597
4
votes
1 answer

SVN: Minimize the dump needed to move project into its own repo

My original question was below. I've tried a few things since to see if I could get this to work. I have a tiny shell script that looks like this: svnadmin dump -r108917 ./repo \ | svndumpfilter include /KeyManagement \ …
David W.
  • 105,218
  • 39
  • 216
  • 337
1
2 3 4 5