<?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>The WebZappr &#187; svn</title>
	<atom:link href="http://blog.webzappr.com/tag/svn/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.webzappr.com</link>
	<description>My Random Web Snippets</description>
	<lastBuildDate>Wed, 17 Mar 2010 00:11:10 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Simple way to get a diff to a server without subversion</title>
		<link>http://blog.webzappr.com/2008/10/simple-way-to-get-a-diff-to-a-server-without-subversion/</link>
		<comments>http://blog.webzappr.com/2008/10/simple-way-to-get-a-diff-to-a-server-without-subversion/#comments</comments>
		<pubDate>Sun, 26 Oct 2008 21:29:53 +0000</pubDate>
		<dc:creator>Thorsten</dc:creator>
				<category><![CDATA[linux]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[svn]]></category>

		<guid isPermaLink="false">http://snipplr.wordpress.com/2008/10/26/simple-way-to-get-a-diff-to-a-server-without-subversion/</guid>
		<description><![CDATA[I recently ran into the problem that I had to update the changes I made on my subversion sandbox to a shared hosting account.
In general you would just check out the revision you need or run a svn diff.
Sadly this is not only possible and you need to figure out the changed files which you [...]]]></description>
			<content:encoded><![CDATA[<p>I recently ran into the problem that I had to update the changes I made on my subversion sandbox to a shared hosting account.</p>
<p>In general you would just check out the revision you need or run a svn diff.</p>
<p>Sadly this is not only possible and you need to figure out the changed files which you need to copy to the server.</p>
<p>This simple little command creates a tar archive with the changed files.</p>
<p><em>Note: you should be in the path of the checked out repository.</em></p>
<pre class="brush: php;">let revision_start=196; let revision_end=225; tar cfv ../r$revision_start-$revision_end.tar `svn diff -r $revision_start:$revision_end . | grep Index | awk '{print \$2}'`</pre>
]]></content:encoded>
			<wfw:commentRss>http://blog.webzappr.com/2008/10/simple-way-to-get-a-diff-to-a-server-without-subversion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
