I created a branch for my repository. Since then, I have made different changes in both branch and trunk. What I want to do now is to ignore whatever changes I made in the branch and copy the HEAD revision of the trunk to the branch. In a way, it's like re-creating the branch again, only with a more updated revision.
Changes in the branch will still be there if I merge trunk to branch and that is not the desired outcome.
I can svn delete the entire branch and create a new one but I don't want to lose my changes in branch, just in case.
Any idea how I can achieve this? Thanks in advance.