SVN - Merge working copy into another branch

1k views Asked by At

I started doing a bunch of changes in a branch that should have happened in trunk. I have not committed those changes yet, so my branch has a bunch of uncommitted files.

Trunk shares a same revision as the branch that contains my uncommitted code so it should merge nicely.

Is there a good way to merge my working copy into trunk instead of the branch? I do not want to affect the branch at all.

Thoughts?

1

There are 1 answers

1
RjOllos On BEST ANSWER

You can use svn switch to change the path that your working copy points to. After svn switch, just commit your changes.