On Fri, May 28, 2010 at 03:30:40PM +0200, Stefan Küng wrote: > I don't understand why this option is necessary for 'svn log'? > Where does 'svn log' do a diff?
It does now, in trunk, as of a few days ago. $ svn help log [...] --show-diff : produce diff output [alias: --diff] [...] This option makes svn log show the committed diff beneath the log message. It's a CLI-client only feature, there is no separate API for this. The client simply calls svn_client_diff5() while producing log output. Stefan