<?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>Daniele Demichelis &#187; subversion</title>
	<atom:link href="http://www.danidemi.com/mainwww/tag/subversion/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.danidemi.com/mainwww</link>
	<description>There are 10 types of people in the world: Those who understand binary, and those who don&#039;t...</description>
	<lastBuildDate>Wed, 14 Apr 2010 08:14:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Get rid of folder that should not be versioned</title>
		<link>http://www.danidemi.com/mainwww/2009/12/get-rid-of-folder-that-should-not-be-versioned/</link>
		<comments>http://www.danidemi.com/mainwww/2009/12/get-rid-of-folder-that-should-not-be-versioned/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 10:01:55 +0000</pubDate>
		<dc:creator>danidemi</dc:creator>
				<category><![CDATA[Development]]></category>
		<category><![CDATA[revision control]]></category>
		<category><![CDATA[snippet]]></category>
		<category><![CDATA[subversion]]></category>

		<guid isPermaLink="false">http://www.danidemi.com/mainwww/?p=88</guid>
		<description><![CDATA[<p>If you work with subversion, for sure you had the problem to tell to subversion to ignore a folder inside your working copy. This happens for example if your IDE builds the sources in a folder inside your working copy. From the very first commit you&#8217;ll start noticing that subversion wants to add that &#8220;build&#8221; [...]]]></description>
			<content:encoded><![CDATA[<p>If you work with subversion, for sure you had the problem to tell to subversion to ignore a folder inside your working copy. This happens for example if your IDE builds the sources in a folder inside your working copy. From the very first commit you&#8217;ll start noticing that subversion wants to add that &#8220;build&#8221; folder to your repository. But, obviously, this is not a good practice.</p>
<p>So you can tell subversion to ignore a folder. Just move in the folder that contains the folder you want to be ignored by subversion and type the following command.</p>
<pre>svn propset svn:ignore &lt;dir_you_want_to_be_ignored&gt; .</pre>
<p>The &#8220;dot&#8221; at the end is important! It means you&#8217;re specifying which folders of the current folder you want to be ignored.</p>
<p>Please note that &lt;dir_you_want_to_be_ignored&gt; should be written without trailing slashes. So for example if you want the build directory not to be managed by subversion, type&#8230;</p>
<pre>svn propset svn:ignore build .</pre>
<p>And not&#8230;</p>
<pre>
<pre>svn propset svn:ignore build/ .</pre>
</pre>
<p>This is a quick tip. I always forget how to do it, so I wrote that little note.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.danidemi.com/mainwww/2009/12/get-rid-of-folder-that-should-not-be-versioned/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
