<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Subversion merge tracking with svnmerge</title>
	<atom:link href="http://kenkinder.com/subversion-merge-tracking-with-svnmerge/feed/" rel="self" type="application/rss+xml" />
	<link>http://kenkinder.com</link>
	<description>Ken Kinder&#039;s personal website</description>
	<lastBuildDate>Wed, 02 Jun 2010 07:46:06 +0000</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Maruthi</title>
		<link>http://kenkinder.com/subversion-merge-tracking-with-svnmerge/comment-page-1/#comment-1905</link>
		<dc:creator>Maruthi</dc:creator>
		<pubDate>Thu, 04 Mar 2010 11:54:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.kenkinder.com.php5-9.websitetestlink.com/?page_id=13#comment-1905</guid>
		<description>Hi Permalink,

You said you have done some research on auto-merging,
How did you do it? how did u handle return values of the merge conflicts
i mean to say, how you would come to know whether merge was successful or failed with conflicts?</description>
		<content:encoded><![CDATA[<p>Hi Permalink,</p>
<p>You said you have done some research on auto-merging,<br />
How did you do it? how did u handle return values of the merge conflicts<br />
i mean to say, how you would come to know whether merge was successful or failed with conflicts?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Clemens W.</title>
		<link>http://kenkinder.com/subversion-merge-tracking-with-svnmerge/comment-page-1/#comment-431</link>
		<dc:creator>Clemens W.</dc:creator>
		<pubDate>Tue, 09 Oct 2007 10:50:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.kenkinder.com.php5-9.websitetestlink.com/?page_id=13#comment-431</guid>
		<description>Nice example, however note that you should use the -b (bidirectional) flag for avail and merge in both directions (not just in the intl -&gt; trunk direction as you have it).  It works in your example because you only merge once, but as soon as you merge back and forth you&#039;ll need to suppress &quot;reflected&quot; changes.</description>
		<content:encoded><![CDATA[<p>Nice example, however note that you should use the -b (bidirectional) flag for avail and merge in both directions (not just in the intl -> trunk direction as you have it).  It works in your example because you only merge once, but as soon as you merge back and forth you&#8217;ll need to suppress &#8220;reflected&#8221; changes.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: spazdaq</title>
		<link>http://kenkinder.com/subversion-merge-tracking-with-svnmerge/comment-page-1/#comment-429</link>
		<dc:creator>spazdaq</dc:creator>
		<pubDate>Wed, 19 Sep 2007 18:06:32 +0000</pubDate>
		<guid isPermaLink="false">http://www.kenkinder.com.php5-9.websitetestlink.com/?page_id=13#comment-429</guid>
		<description>doing research on auto-merging. this was helfpul. thanks.</description>
		<content:encoded><![CDATA[<p>doing research on auto-merging. this was helfpul. thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Klaus Dalang</title>
		<link>http://kenkinder.com/subversion-merge-tracking-with-svnmerge/comment-page-1/#comment-182</link>
		<dc:creator>Klaus Dalang</dc:creator>
		<pubDate>Mon, 04 Dec 2006 01:46:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.kenkinder.com.php5-9.websitetestlink.com/?page_id=13#comment-182</guid>
		<description>This is indeed a very good full example but what if I have several branches that I need to merge back into the trunk? Do I have to re initialize the trunk for each branch that I need to merge?</description>
		<content:encoded><![CDATA[<p>This is indeed a very good full example but what if I have several branches that I need to merge back into the trunk? Do I have to re initialize the trunk for each branch that I need to merge?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: B. K. Oxley (binkley)</title>
		<link>http://kenkinder.com/subversion-merge-tracking-with-svnmerge/comment-page-1/#comment-142</link>
		<dc:creator>B. K. Oxley (binkley)</dc:creator>
		<pubDate>Fri, 04 Aug 2006 10:08:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.kenkinder.com.php5-9.websitetestlink.com/?page_id=13#comment-142</guid>
		<description>How very useful!

I wrapped this very helpful example into a simple shell script (as I am too lazy to type several lines of command):

#!/bin/sh

case $# in
    1 ) ;; # branch name
    * ) print &quot;usage: $0 new-branch-name&quot;; exit 1 ;;
esac

set -e

svn copy trunk &quot;branches/$1&quot;
svn commit &quot;branches/$1&quot; -m &quot;Branching trunk to $1.&quot;
(cd trunk; 
    svnmerge.py init &quot;../branches/$1&quot; 
    &amp;&amp; svn commit -F svnmerge-commit-message.txt 
    &amp;&amp; rm svnmerge-commit-message.txt)
(cd &quot;branches/$1&quot;; 
    svnmerge.py init ../../trunk 
    &amp;&amp; svn commit -F svnmerge-commit-message.txt 
    &amp;&amp; rm svnmerge-commit-message.txt)
</description>
		<content:encoded><![CDATA[<p>How very useful!</p>
<p>I wrapped this very helpful example into a simple shell script (as I am too lazy to type several lines of command):</p>
<p>#!/bin/sh</p>
<p>case $# in<br />
    1 ) ;; # branch name<br />
    * ) print &#8220;usage: $0 new-branch-name&#8221;; exit 1 ;;<br />
esac</p>
<p>set -e</p>
<p>svn copy trunk &#8220;branches/$1&#8243;<br />
svn commit &#8220;branches/$1&#8243; -m &#8220;Branching trunk to $1.&#8221;<br />
(cd trunk;<br />
    svnmerge.py init &#8220;../branches/$1&#8243;<br />
    &#038;&#038; svn commit -F svnmerge-commit-message.txt<br />
    &#038;&#038; rm svnmerge-commit-message.txt)<br />
(cd &#8220;branches/$1&#8243;;<br />
    svnmerge.py init ../../trunk<br />
    &#038;&#038; svn commit -F svnmerge-commit-message.txt<br />
    &#038;&#038; rm svnmerge-commit-message.txt)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Lowell Alleman</title>
		<link>http://kenkinder.com/subversion-merge-tracking-with-svnmerge/comment-page-1/#comment-113</link>
		<dc:creator>Lowell Alleman</dc:creator>
		<pubDate>Tue, 16 May 2006 14:36:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.kenkinder.com.php5-9.websitetestlink.com/?page_id=13#comment-113</guid>
		<description>Very helpful.  This is the first &quot;full&quot; svnmerge example that I have found.

Thanks!

- Lowell</description>
		<content:encoded><![CDATA[<p>Very helpful.  This is the first &#8220;full&#8221; svnmerge example that I have found.</p>
<p>Thanks!</p>
<p>- Lowell</p>
]]></content:encoded>
	</item>
</channel>
</rss>
