Subversion equivalent to Git's 'show' command?
svn diff -c rev
will show what changes happened in the specified revision.
svn log --diff -c rev
will show the diff and the commit information.
svn diff -c rev
will show what changes happened in the specified revision.
svn log --diff -c rev
will show the diff and the commit information.