I know that there's a bunch of topics already, but I've really got hard times with svn in my situation. I have nested trunk directories all around, something like this:
product_name/trunk/product_module/trunk
this is annoying but this is not my choice, and migration to git will be possible only in 2 month, so I'm confused with dir path all the time.
question is: how can I merge product_name/trunk/product_module/trunk/
to product_name/trunk/product_module/branches/uat
without transferring all previous commit messages, so that branch uat would only contain merge-commits messages. I'm actually don't want to deal with revision id's if possible. maybe svn copy
can do this job?
EDIT: This is not duplicate, question is about merging branches, not moving repositories. The one who voted for closing obviously haven't worked with svn at all if they can't see difference between merging repos and branches. Different tools, different pattern and action and even scenario. And I want full command with all my quoted paths please.