<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Recursively ignoring multiple file patterns in subversion</title>
	<atom:link href="http://dancingpenguinsoflight.com/2009/01/recursively-ignoring-multiple-file-patterns-in-subversion/feed/" rel="self" type="application/rss+xml" />
	<link>http://dancingpenguinsoflight.com/2009/01/recursively-ignoring-multiple-file-patterns-in-subversion/</link>
	<description></description>
	<lastBuildDate>Sat, 19 May 2012 07:40:26 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: r00t</title>
		<link>http://dancingpenguinsoflight.com/2009/01/recursively-ignoring-multiple-file-patterns-in-subversion/comment-page-1/#comment-23045</link>
		<dc:creator>r00t</dc:creator>
		<pubDate>Mon, 25 Oct 2010 14:43:48 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=408#comment-23045</guid>
		<description>note that you can also just pass a newline-separated string directly on the command line, no need for any temporary files.
there are multiple ways to do this, for example you can just type in literal newlines inside quotes (but that is a bit confusing to edit):
&lt;code&gt;svn propset svn:ignore &#039;*.log
*.tmp&#039;  DIR&lt;/code&gt;
or you can use (ba?)sh&#039;s $&#039;&#039; construct to expand a \n to a newline:
&lt;code&gt;svn propset svn:ignore $&#039;*.log\n*.tmp&#039;  DIR&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>note that you can also just pass a newline-separated string directly on the command line, no need for any temporary files.<br />
there are multiple ways to do this, for example you can just type in literal newlines inside quotes (but that is a bit confusing to edit):</p>
<div class="codecolorer-container text blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br />2<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">svn propset svn:ignore '*.log<br />
*.tmp' &nbsp;DIR</div></td></tr></tbody></table></div>
<p>or you can use (ba?)sh&#8217;s $&#8221; construct to expand a \n to a newline:</p>
<div class="codecolorer-container text blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">svn propset svn:ignore $'*.log\n*.tmp' &nbsp;DIR</div></td></tr></tbody></table></div>
]]></content:encoded>
	</item>
	<item>
		<title>By: Samuel Huckins</title>
		<link>http://dancingpenguinsoflight.com/2009/01/recursively-ignoring-multiple-file-patterns-in-subversion/comment-page-1/#comment-22220</link>
		<dc:creator>Samuel Huckins</dc:creator>
		<pubDate>Thu, 30 Sep 2010 13:48:35 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=408#comment-22220</guid>
		<description>Thanks Daan! I&#039;ve added your approach into the post.</description>
		<content:encoded><![CDATA[<p>Thanks Daan! I&#8217;ve added your approach into the post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daan van Berkel</title>
		<link>http://dancingpenguinsoflight.com/2009/01/recursively-ignoring-multiple-file-patterns-in-subversion/comment-page-1/#comment-22144</link>
		<dc:creator>Daan van Berkel</dc:creator>
		<pubDate>Tue, 28 Sep 2010 09:22:23 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=408#comment-22144</guid>
		<description>A useful command to alter the a property, e.g. svn:ignore, is
&lt;code&gt;svn &lt;b&gt;propedit&lt;/b&gt; svn:ignore MYDIR&lt;/code&gt;

This opens an editor which allows you to edit the contents of the property.</description>
		<content:encoded><![CDATA[<p>A useful command to alter the a property, e.g. svn:ignore, is</p>
<div class="codecolorer-container text blackboard" style="overflow:auto;white-space:nowrap;border:1px solid #9F9F9F;width:435px;"><table cellspacing="0" cellpadding="0"><tbody><tr><td style="padding:5px;text-align:center;color:#888888;background-color:#EEEEEE;border-right: 1px solid #9F9F9F;font: normal 12px/1.4em Monaco, Lucida Console, monospace;"><div>1<br /></div></td><td><div class="text codecolorer" style="padding:5px;font:normal 12px/1.4em Monaco, Lucida Console, monospace;white-space:nowrap">svn &lt;b&gt;propedit&lt;/b&gt; svn:ignore MYDIR</div></td></tr></tbody></table></div>
<p>This opens an editor which allows you to edit the contents of the property.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: katieg</title>
		<link>http://dancingpenguinsoflight.com/2009/01/recursively-ignoring-multiple-file-patterns-in-subversion/comment-page-1/#comment-4705</link>
		<dc:creator>katieg</dc:creator>
		<pubDate>Wed, 01 Jul 2009 02:36:04 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=408#comment-4705</guid>
		<description>I use to love subversion, but then a year ago my company switched everything over to AccuRev, a scm tool that&#039;s known for managing the &lt;a href=&quot;http://www.accurev.com/accurev-software-development-process.html&quot; rel=&quot;nofollow&quot;&gt;software development process&lt;/a&gt;. I&#039;m sure it wasn&#039;t cheap. The only problem was that were weren&#039;t able to transfer our history in SVN to AccuRev, but our performance and release quality has really improved, and AccuRev requires a lot less administration than than and Subversion did. But I still use subversion for my own small projects at home.</description>
		<content:encoded><![CDATA[<p>I use to love subversion, but then a year ago my company switched everything over to AccuRev, a scm tool that&#8217;s known for managing the <a href="http://www.accurev.com/accurev-software-development-process.html" rel="nofollow">software development process</a>. I&#8217;m sure it wasn&#8217;t cheap. The only problem was that were weren&#8217;t able to transfer our history in SVN to AccuRev, but our performance and release quality has really improved, and AccuRev requires a lot less administration than than and Subversion did. But I still use subversion for my own small projects at home.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Samuel Huckins</title>
		<link>http://dancingpenguinsoflight.com/2009/01/recursively-ignoring-multiple-file-patterns-in-subversion/comment-page-1/#comment-954</link>
		<dc:creator>Samuel Huckins</dc:creator>
		<pubDate>Fri, 13 Mar 2009 22:15:42 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=408#comment-954</guid>
		<description>Yeah, that giant book is stuffed with things I don&#039;t need, and lacking in succinct descriptions of what I do. Glad this helped though!</description>
		<content:encoded><![CDATA[<p>Yeah, that giant book is stuffed with things I don&#8217;t need, and lacking in succinct descriptions of what I do. Glad this helped though!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kyle Banker</title>
		<link>http://dancingpenguinsoflight.com/2009/01/recursively-ignoring-multiple-file-patterns-in-subversion/comment-page-1/#comment-940</link>
		<dc:creator>Kyle Banker</dc:creator>
		<pubDate>Thu, 12 Mar 2009 19:45:53 +0000</pubDate>
		<guid isPermaLink="false">http://dancingpenguinsoflight.com/?p=408#comment-940</guid>
		<description>It&#039;s incredible that neither the official SVN Book nor the Pragmatic Version Control book discuss this situation.  Goes to show just how clunky ignoring files in svn is.

Anyway, excellent tip.  Thanks so much!</description>
		<content:encoded><![CDATA[<p>It&#8217;s incredible that neither the official SVN Book nor the Pragmatic Version Control book discuss this situation.  Goes to show just how clunky ignoring files in svn is.</p>
<p>Anyway, excellent tip.  Thanks so much!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

