<?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>Aleks&#039; Domain &#187; General</title>
	<atom:link href="http://metaleks.net/category/programming/p-general/feed" rel="self" type="application/rss+xml" />
	<link>http://metaleks.net</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Mon, 19 Apr 2010 20:33:48 +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>Recursively Removing .svn</title>
		<link>http://metaleks.net/programming/recursively-removing-svn</link>
		<comments>http://metaleks.net/programming/recursively-removing-svn#comments</comments>
		<pubDate>Mon, 19 Oct 2009 15:51:45 +0000</pubDate>
		<dc:creator>Aleksandar Micovic</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[tip]]></category>

		<guid isPermaLink="false">http://metaleks.net/?p=546</guid>
		<description><![CDATA[I recently started working on an assignment that required me to copy some code from another repository. I did just that, but had a little trouble trying to add the new stuff to my new repository. After about a minute or two I realized that all of the newly copied old code still had the [...]]]></description>
			<content:encoded><![CDATA[<p>I recently started working on an assignment that required me to copy some code from another repository. I did just that, but had a little trouble trying to add the new stuff to my new repository. After about a minute or two I realized that all of the newly copied old code still had the hidden folder .svn&#8230;in every directory. I was copying an OS kernel, so there were quite a bit of these .svns sticking around. They needed to go if I was going to add any of my code into my repository.</p>
<p>How did I remove them? Like this.</p>

<div class="wp_syntax"><div class="code"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">find</span> . <span style="color: #660033;">-name</span> .svn <span style="color: #660033;">-print0</span> <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">xargs</span> <span style="color: #660033;">-0</span> <span style="color: #c20cb9; font-weight: bold;">rm</span> <span style="color: #660033;">-rf</span></pre></div></div>

]]></content:encoded>
			<wfw:commentRss>http://metaleks.net/programming/recursively-removing-svn/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
