how do I integrate a branch into a trunk if the folder structure has changed? - Stack Overflow most recent 30 from stackoverflow.com2009-12-10T19:14:54Zhttp://stackoverflow.com/feeds/question/949332http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/949332/how-do-i-integrate-a-branch-into-a-trunk-if-the-folder-structure-has-changed1how do I integrate a branch into a trunk if the folder structure has changed?Manu2009-06-04T08:49:55Z2009-06-04T09:18:07Z
<p>I need to intergrate a branch into the trunk but the folder hierarchy of my trunk changed in the meantime. I should still be able to merge sub-folders which preserve the original structure, but when I try I get an error.</p>
<p>Example: </p>
<ul>
<li>Original structure when branch was created:
<ul>
<li>svn/trunk/dir1/dir2 --> svn/branches/b1/dir1/dir2</li>
</ul></li>
<li>renamed:
<ul>
<li>svn/trunk/dir1 --> svn/trunk/dir3</li>
</ul></li>
<li>made changes to files in svn/branches/b1/dir1/dir2 </li>
</ul>
<p>Now I want to reintegrate svn/branches/b1/dir1/dir2 --> svn/trunk/dir3/dir2</p>
http://stackoverflow.com/questions/949332/how-do-i-integrate-a-branch-into-a-trunk-if-the-folder-structure-has-changed/949358#9493580Answer by Chris Gummer for how do I integrate a branch into a trunk if the folder structure has changed?Chris Gummer2009-06-04T08:56:43Z2009-06-04T08:56:43Z<p>One method:</p>
<ol>
<li>Restore the original folder hierarchy in the trunk</li>
<li>Perform the merge from the branch into the trunk</li>
<li>Merge from the original hierarchy in the trunk into the new hierarchy in the trunk</li>
<li>Delete the old hierarchy in the trunk</li>
</ol>
http://stackoverflow.com/questions/949332/how-do-i-integrate-a-branch-into-a-trunk-if-the-folder-structure-has-changed/949434#9494340Answer by Josef for how do I integrate a branch into a trunk if the folder structure has changed?Josef2009-06-04T09:18:07Z2009-06-04T09:18:07Z<p>Subversion's <code>merge</code> should work in any directory so just do</p>
<pre><code>svn merge svn/branches/b1/dir1/dir2 svn/trunk/dir3/dir2 svn/trunk/dir3/dir2</code></pre>