SVN Log Made Easier
May 3rd, 2007
So, I got tired of typing in the dates to find a range of log messages. Here’s my solution:
# In ~/.bashrc
svn-log() {
case $1 in
yesterday | yes | y) svn log -r {`date -d yesterday +"%Y-%m-%d"`}:{`date +"%Y-%m-%d"`};;
*) echo "Invalid Option: $1";;
esac
}
I plan to add more to this later.

Very cool feature. Great that this service works on any site not just blogs.
Wow thanks! I’m a regular reader and enjoy your work. Keep it up!