The project that I am currently working on at the moment uses SVN for version control. When it was initially created (by another person who is not currently available), the 'public_html' folder on the server was checked out to the following folder: https://URL/project_name/ with 'project_name' being the root of the repository. It did not provide any structure for branches/tags because apparently it didn't look like we would ever need it.
Now that we realise that we need the branches to organise parallel work on several versions of the project, we decided to create a new repository with proper structure ( URL/project_name/trunk/ for the main version and URL/project_name/branches/... for secondary ones). There is no problem with organising the repository itself, but how do I do a new checkout for the 'public_html' folder on the server? If I try to do 'svn checkout URL/project_name/trunk /home/public_html', I get the error message saying that 'public_html' is already a working copy for a different URL.
I tried to look at the svn switch and svn relocate options on a local test machine through Tortoise SVN, but the former only seems to work for switching among branches of the same repository, and the latter requires to specify the root of the repository (and I need to specify the URL/project_name/trunk as checkout folder). Could anyone help or at least direct me in this situation?
I do have a root SSH access to the server.