Using TortoiseSVN how do I merge changes from the trunk to a branch and vice versa? - Stack Overflow most recent 30 from stackoverflow.com2009-12-11T14:03:53Zhttp://stackoverflow.com/feeds/question/299142http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/299142/using-tortoisesvn-how-do-i-merge-changes-from-the-trunk-to-a-branch-and-vice-vers7Using TortoiseSVN how do I merge changes from the trunk to a branch and vice versa?Ryan Taylor2008-11-18T15:50:12Z2009-02-27T09:08:20Z
<p>I've been reading up on branching/merging with Subversion 1.5 using the excellent and free <a href="http://svnbook.red-bean.com/" rel="nofollow">Version Control with Subversion</a> book. I think that I understand how to use the Subversion command line client to perform the actions that I need most often, which are:</p>
<p><strong>Update Branch with Changes from Trunk</strong></p>
<p>From the branch's working directory run: </p>
<blockquote>
<p>svn merge <a href="http://svn.myurl.com/proj/trunk" rel="nofollow">http://svn.myurl.com/proj/trunk</a></p>
</blockquote>
<p><strong>Merge Branch into Trunk</strong></p>
<p>From the trunk's working directory run:</p>
<blockquote>
<p>svn merge --reintegrate <a href="http://svn.myurl.com/proj/branches/mybranch" rel="nofollow">http://svn.myurl.com/proj/branches/mybranch</a></p>
</blockquote>
<p>However, we are using TortoiseSVN 1.5 as our interface to Subversion. I would like to know how best to perform these operations with TortoiseSVN. The new dialog provides three different options on the main menu. </p>
<ol>
<li>Merge a range of revisions</li>
<li>Reintegrate a branch</li>
<li>Merge two different trees</li>
</ol>
<p>From what I can gather, TortoiseSVN always executes svn with the following syntax.</p>
<blockquote>
<p>svn merge [--dry-run] --force From_URL@revN To_URL@revM PATH</p>
</blockquote>
<p>Additionally, reintegrate a branch often fails with a message stating that some targets have not been merged and so it cannot continue, and so I had to use option #3.</p>
<p>My questions are:</p>
<ol>
<li>How do I use TortoiseSVN 1.5 to merge changes from the trunk to a branch?</li>
<li>How do I use TortoiseSVN 1.5 to merge the branch to the trunk, with and without the reintegrate method?</li>
<li>Which of the above options should I use for each, and why?</li>
</ol>
<p><hr /></p>
<p><strong>EDIT</strong></p>
<p>Through "dry run" testing I have found that the command line Subversion operation</p>
<blockquote>
<p>svn merge <a href="http://svn.myurl.com/proj/trunk" rel="nofollow">http://svn.myurl.com/proj/trunk</a></p>
</blockquote>
<p>is analogous to option #1 (Merge a Range of Revisions) in TortoiseSVN, as long as I leave the revision range blank.</p>
http://stackoverflow.com/questions/299142/using-tortoisesvn-how-do-i-merge-changes-from-the-trunk-to-a-branch-and-vice-vers/299206#2992062Answer by Davide Gualano for Using TortoiseSVN how do I merge changes from the trunk to a branch and vice versa?Davide Gualano2008-11-18T16:02:42Z2008-11-18T16:02:42Z<p>You should use "merge a range of revision".</p>
<p>To merge changes from the trunk to a branch, inside the branch working copy choose "merge range of revisions" and enter the trunk URL and the start and end revisions to merge.</p>
<p>The same in the opposite way to merge a branch in the trunk.</p>
<p>About the --reintegrate flag, check the manual here: <a href="http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-merge.html#tsvn-dug-merge-reintegrate" rel="nofollow">http://tortoisesvn.net/docs/release/TortoiseSVN_en/tsvn-dug-merge.html#tsvn-dug-merge-reintegrate</a></p>
http://stackoverflow.com/questions/299142/using-tortoisesvn-how-do-i-merge-changes-from-the-trunk-to-a-branch-and-vice-vers/299537#2995374Answer by Bert Huijben for Using TortoiseSVN how do I merge changes from the trunk to a branch and vice versa?Bert Huijben2008-11-18T17:44:45Z2008-11-18T17:44:45Z<p>The behavior depends on which version your repository has. Subversion 1.5 allows 4 types of merge:</p>
<ol>
<li>merge sourceURL1[@N] sourceURL2[@M] [WCPATH]</li>
<li>merge sourceWCPATH1@N sourceWCPATH2@M [WCPATH]</li>
<li>merge [-c M[,N...] | -r N:M ...] SOURCE[@REV] [WCPATH]</li>
<li>merge --reintegrate SOURCE[@REV] [WCPATH]</li>
</ol>
<p>Subversion before 1.5 only allowed the first 2 formats.</p>
<p>Technically you can perform all merges with the first two methods, but the last two enable subversion 1.5's merge tracking.</p>
<p>TortoiseSVN's options merge a range or revisions maps to method 3 when your repository is 1.5+ or to method one when your repository is older.</p>
<p>When merging features over to a release/maintenance branch you should use the 'Merge a range of revisions' command. </p>
<p>Only when you want to merge all features of a branch back to a parent branch (commonly trunk) you should look into using 'Reintegrate a branch'.</p>
<p>And the last command -Merge two different trees- is only usefull when you want to step outside the normal branching behavior. (E.g. Comparing different releases and then merging the differenct to yet another branch)</p>
http://stackoverflow.com/questions/299142/using-tortoisesvn-how-do-i-merge-changes-from-the-trunk-to-a-branch-and-vice-vers/299587#2995870Answer by Liudvikas Bukys for Using TortoiseSVN how do I merge changes from the trunk to a branch and vice versa?Liudvikas Bukys2008-11-18T17:59:21Z2008-11-18T17:59:21Z<p>Take a look at <a href="http://www.orcaware.com/svn/wiki/Svnmerge.py" rel="nofollow">svnmerge.py</a>. It's command-line, can't be invoked by TortoiseSVN, but it's more powerful. From the <a href="http://www.orcaware.com/svn/wiki/Svnmerge.py#FAQ" rel="nofollow">FAQ</a>:</p>
<blockquote>
<p>Traditional subversion will let you
merge changes, but it doesn't
"remember" what you've already merged.
It also doesn't provide a convenient
way to exclude a change set from being
merged. svnmerge.py automates some of
the work, and simplifies it. Svnmerge
also creates a commit message with the
log messages from all of the things it
merged.</p>
</blockquote>