On Wed, Feb 17, 2010 at 01:39:44AM -0800, mlg 3 wrote: > I want to obtain a list of files that have changed between two versions. > > If it was a working copy, I could use > svn status > and > svn diff > > With two versions in the repository, I can still use > svn diff -r 400:401 > but cannot use > svn status -r 400:401
Try: svn log -v -r 400 URL_TO_REPOSITORY_HERE The URL is optional, but if you don't put it there you should probably update your working copy before running the log command. See http://subversion.apache.org/faq.html#hidden-log Stefan