<?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>nealenssle.com &#187; subversion</title>
	<atom:link href="http://nealenssle.com/blog/tag/subversion/feed/" rel="self" type="application/rss+xml" />
	<link>http://nealenssle.com/blog</link>
	<description></description>
	<lastBuildDate>Tue, 30 Mar 2010 11:24:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>How to filter Subversion logs by date and author</title>
		<link>http://nealenssle.com/blog/2009/10/14/how-to-filter-subversion-logs-by-date-and-author/</link>
		<comments>http://nealenssle.com/blog/2009/10/14/how-to-filter-subversion-logs-by-date-and-author/#comments</comments>
		<pubDate>Thu, 15 Oct 2009 03:43:02 +0000</pubDate>
		<dc:creator>Neal Enssle</dc:creator>
				<category><![CDATA[untagged]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[scm]]></category>
		<category><![CDATA[subversion]]></category>
		<category><![CDATA[tools]]></category>

		<guid isPermaLink="false">http://nealenssle.com/blog/?p=123</guid>
		<description><![CDATA[I keep forgetting this snippet, and then spend hours re-discovering/re-inventing it. So for the record: Here&#8217;s a bit of magic to let you filter your Subversion (SVN) logs by date and author:

svn log -vr {20091014}:"HEAD" &#124; sed -n "/nealenssle/,/-----$/ p"

I use it in a bash shell script function that I&#8217;ve got in my .bash_profile script [...]]]></description>
			<content:encoded><![CDATA[<p>I keep forgetting this snippet, and then spend hours re-discovering/re-inventing it. So for the record: Here&#8217;s a bit of magic to let you filter your Subversion (SVN) logs by date and author:</p>
<pre>
svn log -vr {20091014}:"HEAD" | sed -n "/nealenssle/,/-----$/ p"
</pre>
<p>I use it in a bash shell script function that I&#8217;ve got in my .bash_profile script like so:</p>
<pre>
function svnlog {
    svn log -vr {$1}:"HEAD" | sed -n "/$2/,/-----$/ p"
}
</pre>
<p>And then call it like so:</p>
<pre>
svnlog 20091014 nealenssle
</pre>
<p>Happy spelunking!</p>
]]></content:encoded>
			<wfw:commentRss>http://nealenssle.com/blog/2009/10/14/how-to-filter-subversion-logs-by-date-and-author/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
