> -----Original Message----- > From: s...@apache.org [mailto:s...@apache.org] > Sent: woensdag 12 mei 2010 12:59 > To: comm...@subversion.apache.org > Subject: svn commit: r943445 - in /subversion/trunk/subversion: svn/cl.h > svn/log-cmd.c svn/main.c > tests/cmdline/getopt_tests_data/svn_help_log_switch_stdout > > Author: stsp > Date: Wed May 12 10:59:27 2010 > New Revision: 943445 > > URL: http://svn.apache.org/viewvc?rev=943445&view=rev > Log: > Add a new --show-diff option to svn log, fixing part of issue #2909. > > svn log --show-diff makes the svn log command provide inline diff output. > This is a fairly naive implementation, done entirely within the CLI client. > A separate RA session is opened to retrieve the diff. It behaves more or > less like a series of svn log; svn diff invocations. This means first and > foremost that it is a bit slow. But it works.
Thanks for doing this in svn instead of changing the APIs for a CLI client specific feature. :) Bert