<?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>antoniolorusso.com &#187; SVN</title>
	<atom:link href="http://antoniolorusso.com/category/scm/svn/feed/" rel="self" type="application/rss+xml" />
	<link>http://antoniolorusso.com</link>
	<description>About me and what I do :)</description>
	<lastBuildDate>Mon, 21 Jun 2010 22:17:54 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>svn: Inconsistent line ending style</title>
		<link>http://antoniolorusso.com/2010/03/19/svn-inconsistent-line-ending-style/</link>
		<comments>http://antoniolorusso.com/2010/03/19/svn-inconsistent-line-ending-style/#comments</comments>
		<pubDate>Fri, 19 Mar 2010 10:38:30 +0000</pubDate>
		<dc:creator>antonio lorusso</dc:creator>
				<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://antoniolorusso.com/2010/03/19/svn-inconsistent-line-ending-style/</guid>
		<description><![CDATA[I hate svn! It&#8217;s official! if you have this stupid error, what you have to do is run dos2unix on the file specified by the error. Don&#8217;t forget the -a option! shell$ dos2unix -a /the/affected/file.php]]></description>
			<content:encoded><![CDATA[<p>I hate svn! It&#8217;s official!<br />
if you have this stupid error, what you have to do is run dos2unix on the file specified by the error. Don&#8217;t forget the -a option!<br />
<code>shell$ dos2unix -a /the/affected/file.php </code></p>
<div class="zemanta-pixie"><img class="zemanta-pixie-img" alt="" src="http://img.zemanta.com/pixy.gif?x-id=17e62287-9b5f-808e-aa5e-5f8b6e6450ee" /></div>
]]></content:encoded>
			<wfw:commentRss>http://antoniolorusso.com/2010/03/19/svn-inconsistent-line-ending-style/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>svn revert cleanup</title>
		<link>http://antoniolorusso.com/2009/06/26/svn-revert-cleanup/</link>
		<comments>http://antoniolorusso.com/2009/06/26/svn-revert-cleanup/#comments</comments>
		<pubDate>Fri, 26 Jun 2009 12:17:27 +0000</pubDate>
		<dc:creator>antonio lorusso</dc:creator>
				<category><![CDATA[SVN]]></category>
		<category><![CDATA[shell]]></category>
		<category><![CDATA[awk]]></category>
		<category><![CDATA[xargs]]></category>

		<guid isPermaLink="false">http://antoniolorusso.com/2009/06/26/svn-revert-cleanup/</guid>
		<description><![CDATA[You have reverted an svn merge and you have a lot of files not tracked (with exclamation mark, basically)?Clean it up:svn status &#124; awk '$1 == "?"&#160; {print $2}' &#124; xargs -t -i rm -r {}Again, knowing awk and xargs turn helpful!]]></description>
			<content:encoded><![CDATA[<p>You have reverted an svn merge and you have a lot of files not tracked (with exclamation mark, basically)?<br />Clean it up:<br /><code>svn status | awk '$1 == "?"&nbsp; {print $2}' | xargs -t -i rm -r {}</code><br />Again, knowing awk and xargs turn helpful!</p>
<p></p>
]]></content:encoded>
			<wfw:commentRss>http://antoniolorusso.com/2009/06/26/svn-revert-cleanup/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>the correct procedure for compiling subversion 1.6.2</title>
		<link>http://antoniolorusso.com/2009/06/22/the-correct-procedure-for-compiling-subversion-1-6-2/</link>
		<comments>http://antoniolorusso.com/2009/06/22/the-correct-procedure-for-compiling-subversion-1-6-2/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 09:44:35 +0000</pubDate>
		<dc:creator>antonio lorusso</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://antoniolorusso.com/2009/06/22/the-correct-procedure-for-compiling-subversion-1-6-2/</guid>
		<description><![CDATA[Not sure if this is the complete way of doing it (I&#8217;m not telling you which .deb to install), but it worked for me: Remove some waste from eventual previous compilations:$ rm -rf /usr/loca/lib/libsvn*$ rm -rf /usr/local/lib/libapr*$ rm -rf /usr/local/lib/libexpat*$ rm -rf /usr/local/lib/libneon*Run autogen$ ./autogen.sh&#160;&#160; Configure and install (it is important to follow the order)$ [...]]]></description>
			<content:encoded><![CDATA[<p>Not sure if this is the complete way of doing it (I&#8217;m not telling you which .deb to install), but it worked for me:</p>
<p>Remove some waste from eventual previous compilations:<br /><code><br />$ rm -rf /usr/loca/lib/libsvn*<br />$ rm -rf /usr/local/lib/libapr*<br />$ rm -rf /usr/local/lib/libexpat*<br />$ rm -rf /usr/local/lib/libneon*<br /></code><br />Run autogen<br /><code><br />$ ./autogen.sh&nbsp;&nbsp; <br /></code><br />Configure and install (it is important to follow the order)<br /><code><br />$ ./configure<br />$ make -j external-all<br />$ make -j local-all<br />$ sudo make install<br /></code><br />That&#8217;s it. Hope to have helped someone as usual.</p>
]]></content:encoded>
			<wfw:commentRss>http://antoniolorusso.com/2009/06/22/the-correct-procedure-for-compiling-subversion-1-6-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>svn: Entry has unexpectedly changed special status</title>
		<link>http://antoniolorusso.com/2008/09/29/svn-entry-has-unexpectedly-changed-special-status/</link>
		<comments>http://antoniolorusso.com/2008/09/29/svn-entry-has-unexpectedly-changed-special-status/#comments</comments>
		<pubDate>Mon, 29 Sep 2008 17:08:51 +0000</pubDate>
		<dc:creator>antonio lorusso</dc:creator>
				<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://antoniolorusso.com/?p=127</guid>
		<description><![CDATA[If you have this error after tryin a commit, for sure you have replaced a standard file with a symlink or viceversa, haven&#8217;t you? In that case, what you have to do is just svn add &#60;the resource changed&#62; and svn will replace the file with the new one! Were you already scared ? Anyway, [...]]]></description>
			<content:encoded><![CDATA[<p>If you have this error after tryin a commit, for sure you have replaced a standard file with a symlink or viceversa, haven&#8217;t you?</p>
<p>In that case, what you have to do is just <strong>svn add &lt;the resource changed&gt;</strong> and svn will replace the file with the new one!</p>
<p>Were you already scared <img src='http://antoniolorusso.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' />  ?</p>
<p>Anyway, the correct procedure to replace a real file with a symlink in svn is the following:</p>
<ol>
<li><strong>svn remove</strong> of the file you want to link</li>
<li><strong>ln -s &lt;link&gt;</strong></li>
<li><strong>svn add</strong> of the new link</li>
</ol>
<p> <img src='http://antoniolorusso.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://antoniolorusso.com/2008/09/29/svn-entry-has-unexpectedly-changed-special-status/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>quick solution to &#8220;svn: Checksum mismatch &#8230;&#8221;</title>
		<link>http://antoniolorusso.com/2008/06/11/quick-solution-to-svn-checksum-mismatch-2/</link>
		<comments>http://antoniolorusso.com/2008/06/11/quick-solution-to-svn-checksum-mismatch-2/#comments</comments>
		<pubDate>Wed, 11 Jun 2008 14:50:30 +0000</pubDate>
		<dc:creator>antonio lorusso</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[checksum mismatch]]></category>
		<category><![CDATA[commit]]></category>

		<guid isPermaLink="false">http://antoniolorusso.com/2008/06/11/quick-solution-to-svn-checksum-mismatch-2/</guid>
		<description><![CDATA[If this error afflict your quiet development day, I&#8217;m sorry I had this problem today and I solved in few steps: make a backup of the working copy in a different directory delete only the corrupted directory from your working copy make an svn update copy back only the modified files you need from the [...]]]></description>
			<content:encoded><![CDATA[<p>If this error afflict your quiet development day, I&#8217;m sorry <img src='http://antoniolorusso.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /><br />
I had this problem today and I solved in few steps:</p>
<ol>
<li>make a backup of the working copy in a different directory</li>
<li>delete only the corrupted directory from your working copy</li>
<li>make an svn update</li>
<li>copy back only the modified files you need from the backup copy to the current working copy</li>
<li>commit your changes</li>
</ol>
<p>Now breath deeply and take a cold shower: I suppose you must be sweat! <img src='http://antoniolorusso.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
]]></content:encoded>
			<wfw:commentRss>http://antoniolorusso.com/2008/06/11/quick-solution-to-svn-checksum-mismatch-2/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>svn log: filter by username</title>
		<link>http://antoniolorusso.com/2008/05/12/svn-log-filter-by-username-4/</link>
		<comments>http://antoniolorusso.com/2008/05/12/svn-log-filter-by-username-4/#comments</comments>
		<pubDate>Mon, 12 May 2008 09:32:45 +0000</pubDate>
		<dc:creator>antonio lorusso</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[sed]]></category>

		<guid isPermaLink="false">http://antoniolorusso.com/2008/05/12/svn-log-filter-by-username-4/</guid>
		<description><![CDATA[I&#8217;ve found this command useful to filter the svn log by username:svn log &#124; sed -n '/username/,/-----$/ p'I hope is useful to anyone like it was for me ps. It&#8217;s really useful to read the sed manual as well!]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve found this command useful to filter the svn log by username:<br /><code>svn log | sed -n '/username/,/-----$/ p'</code><br />I hope is useful to anyone like it was for me <img src='http://antoniolorusso.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>ps. It&#8217;s really useful to read the <b>sed</b> manual as well!</p>
]]></content:encoded>
			<wfw:commentRss>http://antoniolorusso.com/2008/05/12/svn-log-filter-by-username-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
