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?
Does
tags\1.1already exist, and you're trying to overwrite it? If so then you'll need to delete it first (and commit the deletion), otherwise svn assumes you want to copytrunkinto the existing tag directory.