<?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: Merging Apparently Non-Conflicting Conflicts with SVN</title>
	<atom:link href="http://blog.eflow.org/archives/45/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.eflow.org/archives/45</link>
	<description>Insert some amazingly witty tagline here</description>
	<lastBuildDate>Fri, 11 Jun 2010 13:45:56 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: The eflow blog &#187; Fixing SVN Inconsistent Newlines</title>
		<link>http://blog.eflow.org/archives/45/comment-page-1#comment-169</link>
		<dc:creator>The eflow blog &#187; Fixing SVN Inconsistent Newlines</dc:creator>
		<pubDate>Mon, 03 Nov 2008 15:21:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.eflow.org/?p=45#comment-169</guid>
		<description>[...] spoken previously about the travails of having a developer community that uses both Windows and Unix-based machines: [...]</description>
		<content:encoded><![CDATA[<p>[...] spoken previously about the travails of having a developer community that uses both Windows and Unix-based machines: [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://blog.eflow.org/archives/45/comment-page-1#comment-35</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Fri, 09 May 2008 20:45:19 +0000</pubDate>
		<guid isPermaLink="false">http://blog.eflow.org/?p=45#comment-35</guid>
		<description>Fair point, but that wouldn&#039;t have helped here.  The problem is that &quot;line.separator&quot; on my machine still would have been the unix-style &quot;/n&quot; instead of the windows-style &quot;/r/n&quot;.  When committed to svn, subversion sees the old files as:
.........../r/n
........../r/n
and the new files as:
.........../n
.........../n

SVN sees this and thinks they are different unless you use --ignore-eol-style in your merge. :-/

Chase recently committed an svn-property to have svn control the eol-style.  That should help prevent things like this from happening...provided that we keep putting that property on all pages!</description>
		<content:encoded><![CDATA[<p>Fair point, but that wouldn&#8217;t have helped here.  The problem is that &#8220;line.separator&#8221; on my machine still would have been the unix-style &#8220;/n&#8221; instead of the windows-style &#8220;/r/n&#8221;.  When committed to svn, subversion sees the old files as:<br />
&#8230;&#8230;&#8230;../r/n<br />
&#8230;&#8230;&#8230;./r/n<br />
and the new files as:<br />
&#8230;&#8230;&#8230;../n<br />
&#8230;&#8230;&#8230;../n</p>
<p>SVN sees this and thinks they are different unless you use &#8211;ignore-eol-style in your merge. :-/</p>
<p>Chase recently committed an svn-property to have svn control the eol-style.  That should help prevent things like this from happening&#8230;provided that we keep putting that property on all pages!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Saptarshi</title>
		<link>http://blog.eflow.org/archives/45/comment-page-1#comment-34</link>
		<dc:creator>Saptarshi</dc:creator>
		<pubDate>Fri, 09 May 2008 20:38:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.eflow.org/?p=45#comment-34</guid>
		<description>I think its best to do it this way: 

public static String newline = System.getProperty(&quot;line.separator&quot;);

I&#039;ve learnt a useful lesson this way... But sorry for the trouble it caused you!!</description>
		<content:encoded><![CDATA[<p>I think its best to do it this way: </p>
<p>public static String newline = System.getProperty(&#8221;line.separator&#8221;);</p>
<p>I&#8217;ve learnt a useful lesson this way&#8230; But sorry for the trouble it caused you!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://blog.eflow.org/archives/45/comment-page-1#comment-20</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Tue, 29 Apr 2008 12:03:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.eflow.org/?p=45#comment-20</guid>
		<description>Windows actually uses /r/n or similar, which would cause the discrepancy.  I&#039;ve been finding other non-conflicting conflicts when merging code that was committed on windows (I&#039;m working in Ubuntu).  I think from now on I&#039;m going to have to merge from the command line so that I can use the --ignore-eol-style. :-/</description>
		<content:encoded><![CDATA[<p>Windows actually uses /r/n or similar, which would cause the discrepancy.  I&#8217;ve been finding other non-conflicting conflicts when merging code that was committed on windows (I&#8217;m working in Ubuntu).  I think from now on I&#8217;m going to have to merge from the command line so that I can use the &#8211;ignore-eol-style. :-/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Saptarshi</title>
		<link>http://blog.eflow.org/archives/45/comment-page-1#comment-19</link>
		<dc:creator>Saptarshi</dc:creator>
		<pubDate>Tue, 29 Apr 2008 07:12:28 +0000</pubDate>
		<guid isPermaLink="false">http://blog.eflow.org/?p=45#comment-19</guid>
		<description>I actually thought newLine() gave the default UTF-8 character for a new line and hence used it instead of &quot;\n&quot; in the string... Wondering how else it works ??</description>
		<content:encoded><![CDATA[<p>I actually thought newLine() gave the default UTF-8 character for a new line and hence used it instead of &#8220;\n&#8221; in the string&#8230; Wondering how else it works ??</p>
]]></content:encoded>
	</item>
</channel>
</rss>
