Reputation: 1532
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?
Upvotes: 0
Views: 1042
Reputation: 2934
You can use svn switch to change the path that your working copy points to. After svn switch, just commit your changes.
Upvotes: 1