how do I integrate a branch into a trunk if the folder structure has changed? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T19:14:54Z http://stackoverflow.com/feeds/question/949332 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/949332/how-do-i-integrate-a-branch-into-a-trunk-if-the-folder-structure-has-changed 1 how do I integrate a branch into a trunk if the folder structure has changed? Manu 2009-06-04T08:49:55Z 2009-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#949358 0 Answer by Chris Gummer for how do I integrate a branch into a trunk if the folder structure has changed? Chris Gummer 2009-06-04T08:56:43Z 2009-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#949434 0 Answer by Josef for how do I integrate a branch into a trunk if the folder structure has changed? Josef 2009-06-04T09:18:07Z 2009-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>