Hi,
I am using SVN
as repository. We have the structure of
Trunk
Branch 1
Branch 2
.....
We used to merge the branches into Trunk
only after the features are implemented and tested quite well. So it will be a stable working implementation. Branch 1
has its own features and implementation so do Branch 2
..
Now Branch 1
has certain features which will be required by Branch 2
and vice versa.. So, what we will do is, merge those branches.
Say for e.g merge Branch 2 -> Branch 1
..
After resolving the conflicts, now the Branch 1
will be loaded with all the features from Branch 2
. But to make the Branch 2
to be updated, now I copy all the Merged files from Branch 1
and replace the existing files.. Because a merge
will result in conflicts that I already resolved for Branch 2 -> Branch 1
merging..
Is copying the only way or is there other any other standard approach available in SVN
itself??
Also am used to Tortoise SVN
client..