I'm trying to write a script that will copy a number of projects from one (internal) Subversion repository to another (external) Subversion repository. I have tried and failed to use svnadmin dump in conjunction with svndumpfilter and I keep coming across issues regarding files that have moved and the original location no longer exists. I have tried using svndumpfilter2 and svndumpfilter3 but a variety of errors have prevented me from pursuing this route.
Since it is not necessary to preserve the history of the changes I thought a simple script would suffice. I simply check out a project from the old repository, use switch to update the repository and then perform an update. However I simply get an error stating the UUID of the new repository is invalid:
*svn: The repository at 'file:///home/developer/svn/NEW_REPO/java/jar/FOO' has uuid 'c315c701-d367-47aa-a473-87f95147eb5f', but the WC has '8ce3ae18-f586-4a38-8bf8-e0fc691799fb'*
Here is my script:
svn checkout file:////home/developer/svn/OLD_REPO/java/jar/FOO
cd FOO
svn switch --relocate file:////home/developer/svn/OLD_REPO/java/jar/FOO file:////home/developer/svn/NEW_REPO/java/jar/FOO .
svn update
Can anyone see what I am doing wrong or is switch not suited to this task?
UPDATE
I have moved this forward. The UUID issue was with how I created the target repository. I have since run
svnadmin setuuid file:////home/developer/svn/NEW_REPO <old_repo_id>
And now I don't get the UUID issue. However I instead get the issue:
svn: Cannot replace a directory from within
I don't understand why. Trying to update the project from outside of the directory doesn't work either.
UPDATE
Following a suggestion I have switched my script to now use import and export and this works for the time when my "to repository" is empty. My script does not work a subsequent time. Can anyone help. Script is now:
# Create a list of projects to Update
echo java/pom/FOO > list.txt;
echo java/jar/FOO2 >> list.txt;
echo java/jar/FOO2 >> list.txt;
for project in `cat list.txt`; do
echo "Updating: "${project};
projName=`echo ${project} | awk -F"/" '{print $NF}'`
# Obtain the current version
svn export ${FROM_REPO}${project} ${projName}
# Remove the .svn information
find ${projName} -name .svn -exec rm -rf {} \;
# Import the project into the new repository
svn import -m 'Updated by script' ${projName} ${TO_REPO}${project}
rm -rf ${projName}
done;