<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>btaz &#187; Subversion / SVN</title>
	<atom:link href="http://www.btaz.com/category/scm/subversion-svn/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.btaz.com</link>
	<description>Promoting the art of coding</description>
	<lastBuildDate>Fri, 16 Jul 2010 17:01:58 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>svn: Inconsistent line ending style when trying to commit a binary file</title>
		<link>http://www.btaz.com/scm/svn-inconsistent-line-ending-style-when-trying-to-commit-a-binary-file/</link>
		<comments>http://www.btaz.com/scm/svn-inconsistent-line-ending-style-when-trying-to-commit-a-binary-file/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 19:34:50 +0000</pubDate>
		<dc:creator>michael</dc:creator>
				<category><![CDATA[SCM]]></category>
		<category><![CDATA[Subversion / SVN]]></category>

		<guid isPermaLink="false">http://www.btaz.com/?p=54</guid>
		<description><![CDATA[If you get this error message &#8220;svn: Inconsistent line ending style&#8221; when trying to commit a binary file into your SVN repository then Subversion probably thinks that your file is a text file.
First verify your file with:
svn proplist &#60;your-file&#62;
If the result contains svn:eol-style but you know that your file is a binary file then you [...]


Related posts:<ol><li><a href='http://www.btaz.com/java/jdbc/dbvisualizer-auto-commit-problem/' rel='bookmark' title='Permanent Link: DbVisualizer auto commit problem'>DbVisualizer auto commit problem</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>If you get this error message &#8220;svn: Inconsistent line ending style&#8221; when trying to commit a binary file into your SVN repository then Subversion probably thinks that your file is a text file.</p>
<p>First verify your file with:</p>
<pre>svn proplist &lt;your-file&gt;</pre>
<p>If the result contains <span style="color: #0000ff;">svn:eol-style</span> but you know that your file is a binary file then you have a problem where Subversion thinks the file is a text file even though it&#8217;s not. We fix this by first deleting the erroneous properties and then adding the ones we want.</p>
<pre>svn propdel svn:eol-style &lt;your-file&gt;</pre>
<pre>svn propset svn:mime-type application/octet-stream &lt;your-file&gt;</pre>
<p>Verify your file again with the command below</p>
<pre>svn proplist &lt;your-file&gt;</pre>
<p>If everything worked it should say <span style="color: #0000ff;">svn:mime-type</span></p>


<p>Related posts:<ol><li><a href='http://www.btaz.com/java/jdbc/dbvisualizer-auto-commit-problem/' rel='bookmark' title='Permanent Link: DbVisualizer auto commit problem'>DbVisualizer auto commit problem</a></li>
</ol></p>]]></content:encoded>
			<wfw:commentRss>http://www.btaz.com/scm/svn-inconsistent-line-ending-style-when-trying-to-commit-a-binary-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
