<?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>Gilluminate &#187; SVN</title>
	<atom:link href="http://www.gilluminate.com/tag/svn/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gilluminate.com</link>
	<description>By Jason Gill</description>
	<lastBuildDate>Sat, 28 Jan 2012 21:01:18 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Setting up Subversion (SVN) on Bluehost</title>
		<link>http://www.gilluminate.com/2011/02/16/set-up-svn-bluehost/</link>
		<comments>http://www.gilluminate.com/2011/02/16/set-up-svn-bluehost/#comments</comments>
		<pubDate>Wed, 16 Feb 2011 23:34:03 +0000</pubDate>
		<dc:creator>Jason Gill</dc:creator>
				<category><![CDATA[Developer Blog]]></category>
		<category><![CDATA[BlueHost]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://www.gilluminate.com/?p=5901</guid>
		<description><![CDATA[I found some instructions from J. Taylor on how to install SVN on Bluehost, but they were a bit out-dated. For one, Subversion is now an Apache project and isn&#8217;t found on subversion.tigris.org anymore. You can find the project on http://subversion.apache.org/. Other than that, the instructions are great! mkdir src cd src wget http://subversion.tigris.org/downloads/subversion-1.6.15.tar.bz2 wget [...]]]></description>
			<content:encoded><![CDATA[<p>I found some <a href="http://www.bluehostforum.com/showthread.php?12099-Setting-up-Subversion-on-Bluehost/page3#post_73021">instructions</a> from J. Taylor on how to install SVN on Bluehost, but they were a bit out-dated. For one, Subversion is now an Apache project and isn&#8217;t found on subversion.tigris.org anymore. You can find the project on <a href="http://subversion.apache.org/">http://subversion.apache.org/</a>. Other than that, the instructions are great!</p>
<pre>mkdir src
cd src
wget http://subversion.tigris.org/downloads/subversion-1.6.15.tar.bz2
wget http://subversion.tigris.org/downloads/subversion-deps-1.6.15.tar.bz2
tar -xvjpf  subversion-1.6.15.tar.bz2
tar -xvjpf  subversion-deps-1.6.15.tar.bz2
cd subversion-1.6.15
./configure --prefix=$HOME --without-berkeley-db --with-ssl LDFLAGS="-L/lib64"
make
make install</pre>
<p><strong>Note:</strong> I did get one error during the <em>make install</em> process, but it didn&#8217;t seem to matter. SVN works great for me.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gilluminate.com/2011/02/16/set-up-svn-bluehost/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to remove .svn files</title>
		<link>http://www.gilluminate.com/2011/01/06/how-to-remove-svn-files/</link>
		<comments>http://www.gilluminate.com/2011/01/06/how-to-remove-svn-files/#comments</comments>
		<pubDate>Thu, 06 Jan 2011 18:05:09 +0000</pubDate>
		<dc:creator>Jason Gill</dc:creator>
				<category><![CDATA[Developer Blog]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://www.gilluminate.com/?p=5824</guid>
		<description><![CDATA[If you are looking for a command line way to remove all .svn folders in a directory tree, the correct answer here is: Don&#8217;t. As it turns out, all you need to do is run an SVN Export command and that will create a clean directory tree for you, hastle free. Here&#8217;s an example $ [...]]]></description>
			<content:encoded><![CDATA[<p>If you are looking for a command line way to remove all .svn folders in a directory tree, the correct answer here is: <strong>Don&#8217;t.</strong></p>
<p>As it turns out, all you need to do is run an <a href="http://svnbook.red-bean.com/en/1.0/re10.html">SVN Export command</a> and that will create a clean directory tree for you, hastle free. Here&#8217;s an example</p>
<pre>$ svn export svnProject myExportWithoutSnvFiles</pre>
<p>Then you can just ignore or remove the svn directory tree and keep the new one.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.gilluminate.com/2011/01/06/how-to-remove-svn-files/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SVN batch commands for adding or deleting multiple files (Linux)</title>
		<link>http://www.gilluminate.com/2008/10/16/svn-batch-commands/</link>
		<comments>http://www.gilluminate.com/2008/10/16/svn-batch-commands/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 15:44:05 +0000</pubDate>
		<dc:creator>Jason Gill</dc:creator>
				<category><![CDATA[Developer Blog]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://blog.gilluminate.com/?p=5302</guid>
		<description><![CDATA[Here are a few little hints that may help speed up your SVN workflow if you are using SVN in a Linux environment. I found the first one on Snipplr and used that to create the second one for myself. Deleting multiple missing files (ie. the ones with a &#8220;!&#8221; next to them): svn delete [...]]]></description>
			<content:encoded><![CDATA[<p>Here are a few little hints that may help speed up your SVN workflow if you are using SVN in a Linux environment. I found the first one on <a href="http://snipplr.com/view/2362/remove-missing-files-with-svn/">Snipplr</a> and used that to create the second one for myself.</p>
<ol>
<li>Deleting multiple missing files (ie. the ones with a &#8220;!&#8221; next to them):
<pre>svn delete $( svn status | sed -e '/^!/!d' -e 's/^!//' )</pre>
</li>
<li>Adding multiple new files (ie. the ones with a &#8220;?&#8221; next to them):
<pre>svn add $( svn status | sed -e '/^?/!d' -e 's/^?//' )</pre>
</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.gilluminate.com/2008/10/16/svn-batch-commands/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
	</channel>
</rss>

