I am using the following code to copy a trunk to a branch:
svn copy svn://web/path/to/trunk \svn://web/path/to/branches/dev -m "Creating a dev branch of trunk"
It seemed to work fine except it moved the folder trunk along with it. For example:
trunk/somefile.html was copied to branches/dev/trunk/somefile.html
Is this normal? I assume that it shouldn't be like that and would like to know how to copy the branch correctly.
Thanks.