1. svn info (so I know where my working copy is at)
2. svn up (get changes)
3. svn log -v -r[version from svn info]:head (list commit notes)
I wrote a little bash script to automate this
Code: Select all
#!/bin/bash
T=`svn info | sed -n 's/Revision: \(.*$\)/\1/p'`
svn up && svn log -v -r$T:head