<?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>blog.sudosu.net &#187; Subversion</title>
	<atom:link href="http://blog.sudosu.net/category/computers/subversion/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.sudosu.net</link>
	<description>Got root?</description>
	<lastBuildDate>Mon, 21 Dec 2009 18:27:36 +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>Announcing The Launch Of SPBS &#8212; the Simplest Possible Blogging System</title>
		<link>http://blog.sudosu.net/2008/announcing-the-launch-of-spbs-the-simplest-possible-blogging-system/</link>
		<comments>http://blog.sudosu.net/2008/announcing-the-launch-of-spbs-the-simplest-possible-blogging-system/#comments</comments>
		<pubDate>Thu, 07 Feb 2008 07:24:27 +0000</pubDate>
		<dc:creator>schof</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Computers]]></category>
		<category><![CDATA[John Mark Schofield Meta]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[Subversion]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://blog.sudosu.net/2008/announcing-the-launch-of-spbs-the-simplest-possible-blogging-system/</guid>
		<description><![CDATA[And by &#8220;Launch,&#8221; I mean &#8220;I&#8217;m starting to write it.&#8221; There&#8217;s a long way between that and a completed program. But you can check my progress at SPBS&#8217; Google Code site: http://code.google.com/p/spbs/
I&#8217;ve written an introduction to SPBS, and the reasons I&#8217;m writing it here, at http://code.google.com/p/spbs/wiki/SPBSIntroduction
]]></description>
			<content:encoded><![CDATA[<p>And by &#8220;Launch,&#8221; I mean &#8220;I&#8217;m starting to write it.&#8221; There&#8217;s a long way between that and a completed program. But you can check my progress at SPBS&#8217; Google Code site: <a href="http://code.google.com/p/spbs/" target="_blank">http://code.google.com/p/spbs/</a></p>
<p>I&#8217;ve written an introduction to SPBS, and the reasons I&#8217;m writing it here, at <a href="http://code.google.com/p/spbs/wiki/SPBSIntroduction" target="_blank">http://code.google.com/p/spbs/wiki/SPBSIntroduction</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sudosu.net/2008/announcing-the-launch-of-spbs-the-simplest-possible-blogging-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Remove All Subversion Folders From A Directory Tree</title>
		<link>http://blog.sudosu.net/2007/how-to-remove-all-subversion-folders-from-a-directory-tree/</link>
		<comments>http://blog.sudosu.net/2007/how-to-remove-all-subversion-folders-from-a-directory-tree/#comments</comments>
		<pubDate>Sat, 23 Jun 2007 22:20:10 +0000</pubDate>
		<dc:creator>schof</dc:creator>
				<category><![CDATA[Computers]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Shell Scripting]]></category>
		<category><![CDATA[Subversion]]></category>

		<guid isPermaLink="false">http://blog.sudosu.net/2007/how-to-remove-all-subversion-folders-from-a-directory-tree/</guid>
		<description><![CDATA[Say you&#8217;ve got a Subversion source code tree checked out, and for whatever reason you want to remove all Subversion directories inside that tree. (The thing that makes a Subversion tree a Subversion tree is the presence of a &#8220;.svn&#8221; folder in every folder of the tree. If you had a complicated source tree with [...]]]></description>
			<content:encoded><![CDATA[<p>Say you&#8217;ve got a <a href="http://subversion.tigris.org/" title="Subversion Version Control System" target="_blank">Subversion</a> source code tree checked out, and for whatever reason you want to remove all Subversion directories inside that tree. (The thing that makes a Subversion tree a Subversion tree is the presence of a &#8220;.svn&#8221; folder in every folder of the tree. If you had a complicated source tree with lots of subdirectories, it would take you forever to remove each one.)</p>
<p>You can remove all &#8220;.svn&#8221; directories starting below &#8220;~/svn/exampleproject&#8221; &#8212; change this to suit your system &#8212; with the following command:</p>
<blockquote><p>find ~/svn/exampleproject -name &#8220;\.svn&#8221; -exec rm -rf  {} \;</p></blockquote>
<p>To make sure that the above command is going to do what  you want it to do, you may want to first generate a list of what it will delete (I highly recommend it).</p>
<blockquote><p>find ~/svn/exampleproject -name &#8220;\.svn&#8221; -exec echo &#8220;rm -rf  {}&#8221;  \;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://blog.sudosu.net/2007/how-to-remove-all-subversion-folders-from-a-directory-tree/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Install Subversion in OS X</title>
		<link>http://blog.sudosu.net/2007/how-to-install-subversion-in-os-x/</link>
		<comments>http://blog.sudosu.net/2007/how-to-install-subversion-in-os-x/#comments</comments>
		<pubDate>Mon, 05 Mar 2007 00:28:41 +0000</pubDate>
		<dc:creator>schof</dc:creator>
				<category><![CDATA[Macintosh]]></category>
		<category><![CDATA[Macintosh Productivity]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Subversion]]></category>

		<guid isPermaLink="false">http://blog.sudosu.net/2007/how-to-install-subversion-in-os-x/</guid>
		<description><![CDATA[The folks behind Subversion don&#8217;t produce an OS X binary, so they link to a third party who produced one. Unfortunately, the current regular version is 1.4.3, and the latest OS X binary is 1.3.
I found a different binary at Martin Ott&#8217;s site. I have no idea why his site isn&#8217;t linked from Subversion&#8217;s, but [...]]]></description>
			<content:encoded><![CDATA[<p>The folks behind <a href="http://subversion.tigris.org" target="_blank">Subversion</a> don&#8217;t produce an OS X binary, so they link to <a href="http://metissian.com/projects/macosx/subversion/" target="_blank">a third party who produced one</a>. Unfortunately, the current regular version is 1.4.3, and the latest OS X binary is 1.3.</p>
<p>I found a different binary at <a href="http://www.codingmonkeys.de/mbo/articles/tag/subversion" target="_blank">Martin Ott&#8217;s site</a>. I have no idea why his site isn&#8217;t linked from Subversion&#8217;s, but his binary is 1.4.3, the latest.</p>
<p>Simply run the installer in his package, and it will do ALMOST all that&#8217;s needed. However, you still won&#8217;t be able to run svn from the command-line, because the package installs it in /usr/local/bin, and that path isn&#8217;t in Apple&#8217;s default.</p>
<p>For those new to the terminal, the path variable is a list of directories where OS X should look for applications. This applies only to the command line. For instance, if you type &#8220;ls&#8221; on the command line, it will look for the &#8220;ls&#8221; program in each directory listed in the path. Since it finds it in /bin, it will run ls. The path is why running &#8220;ls&#8221; is the same as running &#8220;/bin/ls&#8221;.</p>
<p>To find out what your path is currently, enter the following command: &#8220;echo $PATH&#8221;</p>
<p>(Capitalization does matter.)</p>
<p>To add /usr/bin/local to your path, copy and paste the following line into your terminal:</p>
<p>echo &#8220;export PATH=$PATH:/usr/local/bin&#8221; &gt;&gt; ~/.profile</p>
<p>This will not affect the shell you&#8217;re running now, so type &#8220;exit&#8221; to leave the shell. Then hit CMD-N to get a new terminal, and type &#8220;svn&#8221;</p>
<p>You should get a message telling you to type &#8220;svn help&#8221; for more information. Success, svn is installed and configured properly.</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.sudosu.net/2007/how-to-install-subversion-in-os-x/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
