<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: svndiff</title>
	<atom:link href="http://www.omat.nl/2009/10/01/svndiff/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.omat.nl/2009/10/01/svndiff/</link>
	<description>My Blogs.</description>
	<lastBuildDate>Sat, 21 Jan 2012 20:38:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Arnonym</title>
		<link>http://www.omat.nl/2009/10/01/svndiff/comment-page-1/#comment-921</link>
		<dc:creator>Arnonym</dc:creator>
		<pubDate>Fri, 02 Oct 2009 13:01:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.omat.nl/?p=449#comment-921</guid>
		<description>I have something similar for some years now.

Only I use vim to display the diff...</description>
		<content:encoded><![CDATA[<p>I have something similar for some years now.</p>
<p>Only I use vim to display the diff&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bbroeksema</title>
		<link>http://www.omat.nl/2009/10/01/svndiff/comment-page-1/#comment-920</link>
		<dc:creator>bbroeksema</dc:creator>
		<pubDate>Fri, 02 Oct 2009 12:42:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.omat.nl/?p=449#comment-920</guid>
		<description>Color did not work for me with less. Adding the following line before your or Diegos lines did the trick:

alias less=&quot;less -R&quot; # Enable colors in less.</description>
		<content:encoded><![CDATA[<p>Color did not work for me with less. Adding the following line before your or Diegos lines did the trick:</p>
<p>alias less=&#8221;less -R&#8221; # Enable colors in less.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dimsuz</title>
		<link>http://www.omat.nl/2009/10/01/svndiff/comment-page-1/#comment-919</link>
		<dc:creator>dimsuz</dc:creator>
		<pubDate>Fri, 02 Oct 2009 07:46:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.omat.nl/?p=449#comment-919</guid>
		<description>Oh, nice.

I currently have:

function svnless() { svn diff $@ &#124; vim - -R }

but i beleive yours will be faster :)</description>
		<content:encoded><![CDATA[<p>Oh, nice.</p>
<p>I currently have:</p>
<p>function svnless() { svn diff $@ | vim &#8211; -R }</p>
<p>but i beleive yours will be faster :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: toma</title>
		<link>http://www.omat.nl/2009/10/01/svndiff/comment-page-1/#comment-917</link>
		<dc:creator>toma</dc:creator>
		<pubDate>Thu, 01 Oct 2009 22:19:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.omat.nl/?p=449#comment-917</guid>
		<description>@Flameeyes Ah, nice to hear from you again! And indeed your version is better. Adjusted my .alias....</description>
		<content:encoded><![CDATA[<p>@Flameeyes Ah, nice to hear from you again! And indeed your version is better. Adjusted my .alias&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Diego E. “Flameeyes” Pettenò</title>
		<link>http://www.omat.nl/2009/10/01/svndiff/comment-page-1/#comment-916</link>
		<dc:creator>Diego E. “Flameeyes” Pettenò</dc:creator>
		<pubDate>Thu, 01 Oct 2009 22:06:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.omat.nl/?p=449#comment-916</guid>
		<description>You might also consider this ;)




&lt;code&gt;svn() {
  if [[ $1 == &quot;diff&quot; ]]; then
    /usr/bin/svn &quot;$@&quot; &#124; colordiff &#124; less
  else
    /usr/bin/svn &quot;$@&quot;
  fi
}
&lt;/code&gt;



this way it&#039;s quite transparent ;)</description>
		<content:encoded><![CDATA[<p>You might also consider this ;)</p>
<p><code>svn() {<br />
  if [[ $1 == "diff" ]]; then<br />
    /usr/bin/svn "$@" | colordiff | less<br />
  else<br />
    /usr/bin/svn "$@"<br />
  fi<br />
}<br />
</code></p>
<p>this way it&#8217;s quite transparent ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Christoph Bartoschek</title>
		<link>http://www.omat.nl/2009/10/01/svndiff/comment-page-1/#comment-915</link>
		<dc:creator>Christoph Bartoschek</dc:creator>
		<pubDate>Thu, 01 Oct 2009 21:46:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.omat.nl/?p=449#comment-915</guid>
		<description>I prefer diff-cmd=kdiff3</description>
		<content:encoded><![CDATA[<p>I prefer diff-cmd=kdiff3</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Milian Wolff</title>
		<link>http://www.omat.nl/2009/10/01/svndiff/comment-page-1/#comment-914</link>
		<dc:creator>Milian Wolff</dc:creator>
		<pubDate>Thu, 01 Oct 2009 21:45:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.omat.nl/?p=449#comment-914</guid>
		<description>At least for coloring you don&#039;t need an alias:

Edit your ~/.subversion/config and set

diff-cmd = colordiff

And don&#039;t you need less -r for coloring to work?</description>
		<content:encoded><![CDATA[<p>At least for coloring you don&#8217;t need an alias:</p>
<p>Edit your ~/.subversion/config and set</p>
<p>diff-cmd = colordiff</p>
<p>And don&#8217;t you need less -r for coloring to work?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Armin</title>
		<link>http://www.omat.nl/2009/10/01/svndiff/comment-page-1/#comment-913</link>
		<dc:creator>Armin</dc:creator>
		<pubDate>Thu, 01 Oct 2009 21:41:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.omat.nl/?p=449#comment-913</guid>
		<description>Inspired by &quot;git diff&quot;?
Thanks for sharing, somehow I did not think that far until today.</description>
		<content:encoded><![CDATA[<p>Inspired by &#8220;git diff&#8221;?<br />
Thanks for sharing, somehow I did not think that far until today.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

