Move svn server repository to new locationBy neokrates, written on June 23, 2009 |
howto |
- neokrates
- Email: uwarov@yahoo.com
- Website: http://www.thinkplexx.com
- Join date: 05-31-09
- Posts: 20
Rate it
Ad
Poll
Do you plan to migrate to new SCM?
- Our current SCM is just perfect (69%, 9 Votes)
- Subversion (SVN) (15%, 2 Votes)
- Git (8%, 1 Votes)
- Mercurial (Hg) (8%, 1 Votes)
- Bazaar (0%, 0 Votes)
- Other (0%, 0 Votes)
Total Voters: 13
Loading ...
Most popular search terms:
On the server, the svn repositories are stored under normal directories. You instruct subversion to “dump” the data from your source repository and “load” it into new location.
Suppose, your current repository location is : /home/svn/repositories/svn/repo1
and you want to move your repository to /home/svn/repositories/svn/scc
Do:
1 2 3 4 | svnadmin dump /home/svn/repositories/svn/repo1 > ~/repo1.dmp cd /home/svn/repositories/svn svn create scc svnadmin load scc < ~/repo1.dmp |
|
LEARN MORE (amazon bookstore)
|
|
TAGS
|
|
SOCIAL
|
|
INCOMING SEARCH TERMS
|


(2 votes, average: 3.5 out of 5)

















isn’t working.
the following simply dump works for me:
svnadmin dump /home/svn/repositories/svn/repo1 > repo1.svn
svnadmin load /home/svn/repositories/svn/scc
Like or Dislike:
0
0
Hi,
As I see you have chaged your “dump” command.
I am not sure, but earlier you had some symbols before “>” with “&”
and all information from repo wasn’t saved to dump file and was showed to standart output.
Sorry for my English
Like or Dislike:
0
0