Hi,
I have two branches : X and Y. I want to replace a Y's subdirectory (y1) by its equivalent from X (x1).
For the time being, I do the following : copy x1 to Y, remove y1, rename (move) x1 to y1 :
a) svn copy https://path/to/branches/X/x1 https://path/to/branches/Y/
b) svn delete https://path/to/branches/Y/y1
c) svn move https://path/to/branches/Y/x1 https://path/to/branches/Y/y1
I think it is quite ugly...
How could I do it in a smarter way ?