I'm still getting my head around the finer points of Subversion.
I have a repository structure like so:
/trunk
/tags
/branches
and one local working copy that is a checkout of /trunk
I would like to move those directories within the repository to
/website/trunk
/website/tags
/website/branches
To make way for a number of other projects that need to be in that repository as well.
What is the most clever way to do this, in terms of the log history staying intact?
What would I do to re-connect my local working copy with the new directory?