Getting an entire svnroot's worth of logs

A handy tip from peterS on #svn via irc.opj

<dgtlmoon> how do i get the 'svn log' for an entire repo? if i run it at the base of my checked out code i only see changes for those files
<peterS> dgtlmoon: that is correct.  I have a shell alias to help with this:  alias svnroot="LC_ALL=C svn info | sed -ne 's/Repository Root: //p'"
<peterS> dgtlmoon: then I can say:  svn log --whatever $(svnroot)

This way you can see a complete repo's changes, handy for logging etc

0
Your rating: None