#!/bin/bash
#
# Copyright (C) 2007,
#   Geoff Buchan	<geoffrey.buchan@gmail.com>
# Based on the script cvsvimdiff, written by
#   Stefano Zacchiroli	<zack@cs.unibo.it>
#   Enrico Tassi	<tassi@cs.unibo.it>
#
# This is free software, you can redistribute it and/or modify it under the
# terms of the GNU General Public License version 2 as published by the Free
# Software Foundation.
#

mv $1 $1.yourfile
svn update $1
mv $1 $1.currentsvnfile
vimdiff $1.currentsvnfile $1.yourfile
mv $1.yourfile $1
rm $1.currentsvnfile
