Open you working copy folder in console (terminal) and choose commands below.
To see last changes:
If you have commited last changes use:
svn diff -rPREV
If you left changes in working copy (that’s bad practice) than use:
svn diff
To see log of commits:
If you’re working in branch:
svn log --stop-on-copy
If you’re working with trunk:
svn log | head
or just
svn log