We are using TortoiseSVN in a team environment. When working on a bigger feature, I create a feature branch, work for a week there, merge changes from trunk to my branch every other day and when the feature is complete, I merge it back to trunk.
When merging, I always do the following:
- commit everything to the branch
- switch the whole working copy to trunk, changing (mostly deleting) hundreds of files
- use "Reintegrate a branch" option, merging the changed/new files from branch that were already on the disk 30 seconds ago
- verify that the code compiles
- commit to trunk
This seems inefficient to me - I create a bunch of files, delete them when switching to trunk and then create them again when merging to the trunk.
Is there any other way to merge a branch to trunk using TortoiseSVN that would be more efficient, without having two separate working copies? (which is not actually very efficient in our scenario because some dependencies use absolute paths and I need to manually change them when I want to compile from another working copy)