Table of Contents

filtering the log messages

svn log between two dates

svn log -r {2017-09-01}:{2017-10-31} | less

svn log between two dates by a particular author

svn log -r {2017-09-01}:{2017-10-31} --search author_foo | less

svn log by a particular user in the last N commits

svn log --search author_foo -l N | less

Increase the context when doing svn diff

By default, svn diff shows three lines of context. To change it to 10

svn diff FILENAME --diff-cmd=diff -x -U10

See

svn help diff

for explanation of the arguments and generic use cases.

Related Links:

tags | svn diff more context

What files changed locally?

List files that changed locally

Most generic way

Other possible ways