<?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>Khalil Majdalawi&#039;s Blog &#187; subversion</title>
	<atom:link href="http://dev3k.com/blog/tag/subversion/feed/" rel="self" type="application/rss+xml" />
	<link>http://dev3k.com/blog</link>
	<description>Web development,Technology,Games and more...</description>
	<lastBuildDate>Mon, 30 Jan 2012 09:57:35 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
		<item>
		<title>Delete .svn folders recursively using command line</title>
		<link>http://dev3k.com/blog/2009/10/delete-svn-folders-recursively-using-command-line/</link>
		<comments>http://dev3k.com/blog/2009/10/delete-svn-folders-recursively-using-command-line/#comments</comments>
		<pubDate>Mon, 05 Oct 2009 08:42:27 +0000</pubDate>
		<dc:creator>Khalil Majdalawi</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[commands]]></category>
		<category><![CDATA[subversion]]></category>

		<guid isPermaLink="false">http://dev3k.com/blog/?p=321</guid>
		<description><![CDATA[some times i work on small projects with friends and we use Subversion to track and store code changes, collaborate, and share project files so once we finish we usually upload it somewhere by copying the whole project folder so i face that subversion makes folder inside each folder in the project called ".svn" and [...]]]></description>
			<content:encoded><![CDATA[<p>some times i work on small projects with friends and we use <a href="http://en.wikipedia.org/wiki/Subversion_%28software%29">Subversion</a> to track and store code changes, collaborate, and share project files so once we finish we usually upload it somewhere by copying the whole project folder so i face that subversion makes folder inside each folder in the project called ".svn" and that take time to remove manually and unnecessary size to upload<br />
so i run a <a href="http://en.wikipedia.org/wiki/Unix_shell">command</a> inside the project folder to remove that folders recursively before upload.</p>
<p>Run this:</p>
<pre><code>find . -name .svn -exec rm -rf {} \;</code></pre></p>
]]></content:encoded>
			<wfw:commentRss>http://dev3k.com/blog/2009/10/delete-svn-folders-recursively-using-command-line/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
	</channel>
</rss>

