<?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>Web Development &#38; Stuff &#187; SVN</title>
	<atom:link href="http://web-development-blog.co.uk/category/svn/feed/" rel="self" type="application/rss+xml" />
	<link>http://web-development-blog.co.uk</link>
	<description>Some interesting findings from web-dev land...</description>
	<lastBuildDate>Mon, 02 Apr 2012 15:10:20 +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>Add directory with no files to SVN</title>
		<link>http://web-development-blog.co.uk/2009/11/21/add-directory-with-no-files-to-svn/</link>
		<comments>http://web-development-blog.co.uk/2009/11/21/add-directory-with-no-files-to-svn/#comments</comments>
		<pubDate>Sat, 21 Nov 2009 14:10:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://web-development-blog.co.uk/?p=257</guid>
		<description><![CDATA[To add a directory without any of its contents/files to SVN you can do this:
(You need to be using SVN v1.5 or greater for this to work)
1svn add --depth=empty app/tmp
You can then SVN ignore the contents to prevent it being version controlled.
]]></description>
			<content:encoded><![CDATA[<p>To add a directory without any of its contents/files to SVN you can do this:</p>
<p>(You need to be using SVN v1.5 or greater for this to work)</p>
<div class="codecolorer-container bash " style="overflow:auto;white-space:nowrap;width:100%"><table cellspacing="0" cellpadding="0"><tbody><tr><td class="line-numbers"><div>1<br /></div></td><td><div class="bash codecolorer" style="font-family:Monaco,Lucida Console,monospace"><span class="kw2">svn</span> add <span class="re5">--depth</span>=empty app<span class="sy0">/</span>tmp</div></td></tr></tbody></table></div>
<p>You can then <a href="/2009/01/17/svn-ignore-directory-contents/">SVN ignore</a> the contents to prevent it being version controlled.</p>
]]></content:encoded>
			<wfw:commentRss>http://web-development-blog.co.uk/2009/11/21/add-directory-with-no-files-to-svn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>View changed files from previous versions SVN</title>
		<link>http://web-development-blog.co.uk/2009/10/01/view-changed-files-from-previous-versions-svn/</link>
		<comments>http://web-development-blog.co.uk/2009/10/01/view-changed-files-from-previous-versions-svn/#comments</comments>
		<pubDate>Thu, 01 Oct 2009 11:16:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[SVN]]></category>
		<category><![CDATA[Web development]]></category>

		<guid isPermaLink="false">http://web-development-blog.co.uk/?p=188</guid>
		<description><![CDATA[If you want to view changed/modified/added files from previous revisions with SVN you can do this:
12svn log -v -r 25
# This will show you the changes that were committed in v25
]]></description>
			<content:encoded><![CDATA[<p>If you want to view changed/modified/added files from previous revisions with SVN you can do this:</p>
<div class="codecolorer-container bash " style="overflow:auto;white-space:nowrap;width:100%"><table cellspacing="0" cellpadding="0"><tbody><tr><td class="line-numbers"><div>1<br />2<br /></div></td><td><div class="bash codecolorer" style="font-family:Monaco,Lucida Console,monospace"><span class="kw2">svn</span> log <span class="re5">-v</span> <span class="re5">-r</span> <span class="nu0">25</span><br />
<span class="co0"># This will show you the changes that were committed in v25</span></div></td></tr></tbody></table></div>
]]></content:encoded>
			<wfw:commentRss>http://web-development-blog.co.uk/2009/10/01/view-changed-files-from-previous-versions-svn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rolling back changes with SVN. Restore previous version.</title>
		<link>http://web-development-blog.co.uk/2009/09/23/rolling-back-changes-with-svn-restore-previous-version/</link>
		<comments>http://web-development-blog.co.uk/2009/09/23/rolling-back-changes-with-svn-restore-previous-version/#comments</comments>
		<pubDate>Wed, 23 Sep 2009 14:04:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[SVN]]></category>
		<category><![CDATA[Web development]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://web-development-blog.co.uk/?p=179</guid>
		<description><![CDATA[This section of the SVN book tells you how to roll back to previous versions, using the merge command on your working copy:
http://svnbook.red-bean.com/en/1.0/svn-book.html#svn-ch-4-sect-4.2
]]></description>
			<content:encoded><![CDATA[<p>This section of the SVN book tells you how to roll back to previous versions, using the merge command on your working copy:</p>
<p><a href="http://svnbook.red-bean.com/en/1.0/svn-book.html#svn-ch-4-sect-4.2">http://svnbook.red-bean.com/en/1.0/svn-book.html#svn-ch-4-sect-4.2</a></p>
]]></content:encoded>
			<wfw:commentRss>http://web-development-blog.co.uk/2009/09/23/rolling-back-changes-with-svn-restore-previous-version/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

