I have some threads which talk about doing a svndadmin and a svnload, I don’t have admin privileges hence I would want to just copy the existing project devoid of the .svn directories and just do a svn add on the target repository. I am not that keen on migrating the existing revisions/comments along with it.
Are there any scripts available to do this?
What do you mean devoid of
.svndirectories? The repo doesn’t have those, only the working directory does.Since you do not care about history, you can do
svn exportto get the contents of the repo and thensvn importorsvn addit into the repo on the other server. It should be pretty straight forward.