I have an SVN repository set up with the following directories:
/branches/
/tags/
/trunk/
I created /branches/my_feature/ using
svn cp trunk branches/my_feature
That's fine. I now want to keep my branch up-to-date with trunk, so I run (with cwd = branches/my_feature)
svn merge ../../trunk
and it pulls everything down, showing that everything is being re-added, rather than just the changes being added.
I just want the changes to trunk to be added. How can I do this?