svnadmin create /path/to/repo
If you already have a repository that you want to move to the server, you should use svnsync to do so. First, you will want to allow a user to have svnsync access with
#!/bin/sh
USER=""
if [ "$USER" = "myusername" ]; then exit 0; fi
echo "Permission denied"
exit 1
This goes in the file /path/to/repo/hooks/pre-revprop-change. Make sure that it is set as executable
chmod +x ~/mymirror/hooks/pre-revprop-change
You can then tell svnsync to initialize the mirror.
svnsync init file:///path/to/repo
svn+ssh://username@svnmaster.domain.ext/newpath/to/repo
Once this initialization is done, you can sync the full data.
svnsync --non-interactive sync file:///path/to/repo
You can then interact with this new repository over SSH by using
ssh+svn://username@svnmaster.domain.ext/newpath/to/repo
as the connection details.
One problem that may come up when your SVN repository from one server to another is to fix up your local copy. There is a switch command that will allow you to do this.
svn switch --relocate old-url new-url
This way, you don't need to toss away your current working copy and checkout a fresh one.
No comments:
Post a Comment