I want to create a tag in my repository. My command is:
svn copy trunk tags\1.1
I execute this command in the main directory of my local working copy. It however copies whole directory so the files ends up in tags\1.1\trunk
directory, not in tags\1.1
. I was trying to add slashes or backslashes after the trunk directory name, but it is the same. How can I copy all files and directories from trunk to tag directory?