svn-copy

updating tags in svn

If I use svn copy to take a snapshot of a portion of a repository, how can I update that snapshot? Use case: myrepo/ trunk/ src/ something.c something.h tags/ branches/ mkdir branches/user1/trusted svn add branches/user1/ svn copy trunk/src branches/user1/trusted myrepo/ trunk/ src/ something.c ...

svn copy - problem with directories

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...