<?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>Gilluminate &#187; SVN</title>
	<atom:link href="http://www.gilluminate.com/tag/svn/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gilluminate.com</link>
	<description></description>
	<lastBuildDate>Tue, 15 Jun 2010 02:50:57 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>SVN batch commands for adding or deleting multiple files (Linux)</title>
		<link>http://www.gilluminate.com/2008/10/16/svn-batch-commands/</link>
		<comments>http://www.gilluminate.com/2008/10/16/svn-batch-commands/#comments</comments>
		<pubDate>Thu, 16 Oct 2008 15:44:05 +0000</pubDate>
		<dc:creator>Jason Gill</dc:creator>
				<category><![CDATA[Developer Blog]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[SVN]]></category>

		<guid isPermaLink="false">http://blog.gilluminate.com/?p=5302</guid>
		<description><![CDATA[Here are a few little hints that may help speed up your SVN workflow if you are using SVN in a Linux environment. I found the first one on Snipplr and used that to create the second one for myself. Deleting multiple missing files (ie. the ones with a &#8220;!&#8221; next to them): svn delete [...]]]></description>
			<content:encoded><![CDATA[<p>Here are a few little hints that may help speed up your SVN workflow if you are using SVN in a Linux environment. I found the first one on <a href="http://snipplr.com/view/2362/remove-missing-files-with-svn/">Snipplr</a> and used that to create the second one for myself.</p>
<ol>
<li>Deleting multiple missing files (ie. the ones with a &#8220;!&#8221; next to them):

<div class="wp_codebox"><table><tr id="p53023"><td class="code" id="p5302code3"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">svn</span> delete $<span style="color: #7a0874; font-weight: bold;">&#40;</span> <span style="color: #c20cb9; font-weight: bold;">svn</span> status <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">'/^!/!d'</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">'s/^!//'</span> <span style="color: #7a0874; font-weight: bold;">&#41;</span></pre></td></tr></table></div>

</li>
<li>Adding multiple new files (ie. the ones with a &#8220;?&#8221; next to them):

<div class="wp_codebox"><table><tr id="p53024"><td class="code" id="p5302code4"><pre class="bash" style="font-family:monospace;"><span style="color: #c20cb9; font-weight: bold;">svn</span> add $<span style="color: #7a0874; font-weight: bold;">&#40;</span> <span style="color: #c20cb9; font-weight: bold;">svn</span> status <span style="color: #000000; font-weight: bold;">|</span> <span style="color: #c20cb9; font-weight: bold;">sed</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">'/^?/!d'</span> <span style="color: #660033;">-e</span> <span style="color: #ff0000;">'s/^?//'</span> <span style="color: #7a0874; font-weight: bold;">&#41;</span></pre></td></tr></table></div>

</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.gilluminate.com/2008/10/16/svn-batch-commands/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
