Just a quick tip, if you need to move a SVN branch or folder around inside the repository, use the following command:

svn move https://svn_server/svn/repo/branches/folder https://svn_server/svn/repo/branches-graveyard/folder --message "Moving branch to graveyard"

This command can be useful when you need to move an old branch into archive or perform other branch administration in your SVN repository. At work we are using Visual SVN server, so I had to run the command in the C:\Program Files (x86)\VisualSVN Server\bin folder.

One final thing, you must have a commit message when running the SVN move command otherwise it will not work. For more information visit this superuser question:

SVN - moving folders to the trunk