svn

Getting an entire svnroot's worth of logs

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


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
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'"
dgtlmoon: then I can say: svn log --whatever $(svnroot)

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

Syndicate content