<?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>My Science Is Better &#187; svn</title>
	<atom:link href="http://www.myscienceisbetter.info/tag/svn/feed" rel="self" type="application/rss+xml" />
	<link>http://www.myscienceisbetter.info</link>
	<description></description>
	<lastBuildDate>Sat, 20 Mar 2010 16:16:09 +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>Remove .svn folders recursively</title>
		<link>http://www.myscienceisbetter.info/remove-svn-folders-recursively.html</link>
		<comments>http://www.myscienceisbetter.info/remove-svn-folders-recursively.html#comments</comments>
		<pubDate>Tue, 19 Jan 2010 10:10:25 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=129</guid>
		<description><![CDATA[I know that you have to use svn export in order to get a copy of the repo without the .svn folders inside, but sometimes you have to work with what you have, a checkout of a repo with .svn folders. And you want them removed.
After googling a bit i found a great way to [...]]]></description>
			<content:encoded><![CDATA[<p>I know that you have to use svn export in order to get a copy of the repo without the .svn folders inside, but sometimes you have to work with what you have, a checkout of a repo with .svn folders. And you want them removed.</p>
<p>After googling a bit i found a great way to <a title="Recursively remove .svn folders" href="http://www.myscienceisbetter.info/remove-svn-folders-recursively.htm">recursively remove .svn folders</a>. Just type the following while in the root of your checkout:</p>
<pre class="brush: bash;">rm -rf `find . -type d -name .svn`</pre>
<p>This tip was found on http://www.anyexample.com/linux_bsd/bash/recursively_delete__svn_directories.xml</p>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/remove-svn-folders-recursively.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SVN Ignore all files inside a folder</title>
		<link>http://www.myscienceisbetter.info/svn-ignore-all-files-inside-a-folder.html</link>
		<comments>http://www.myscienceisbetter.info/svn-ignore-all-files-inside-a-folder.html#comments</comments>
		<pubDate>Tue, 22 Dec 2009 17:50:39 +0000</pubDate>
		<dc:creator>Romeo Adrian Cioaba</dc:creator>
				<category><![CDATA[subversion]]></category>
		<category><![CDATA[ubuntu]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[svn]]></category>
		<category><![CDATA[svn ignore]]></category>

		<guid isPermaLink="false">http://www.myscienceisbetter.info/?p=120</guid>
		<description><![CDATA[If you want to ignore certain file types inside a folder on SVN it's pretty easy:

svn propset svn:ignore &#34;*.tgz&#34; backup

It's a bit more complicated if you want to ignore everything inside a folder (be it files or folders). If you have a structure as the following: 

/public/media
/public/media/member
/public/media/member/artist
/public/media/member/fan
/public/media/member/label

and you want to ignore everything inside public/media, just [...]]]></description>
			<content:encoded><![CDATA[<p>If you want to ignore certain file types inside a folder on SVN it's pretty easy:</p>
<pre class="brush: bash;">
svn propset svn:ignore &quot;*.tgz&quot; backup
</pre>
<p>It's a bit more complicated if you want to ignore everything inside a folder (be it files or folders). If you have a structure as the following: </p>
<pre class="brush: bash;">
/public/media
/public/media/member
/public/media/member/artist
/public/media/member/fan
/public/media/member/label
</pre>
<p>and you want to ignore everything inside public/media, just do:</p>
<pre class="brush: bash;">
svn propset svn:ignore &quot;*&quot; public/media/
</pre>
]]></content:encoded>
			<wfw:commentRss>http://www.myscienceisbetter.info/svn-ignore-all-files-inside-a-folder.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
