#! /bin/bash

tempfile=/tmp/tmp$$
rm -f $tempfile

#svn log -r COMMITTED > $tempfile
git log --max-count=1 > $tempfile

echo "-----------------------------------------------------------" >> $tempfile
echo " " >> $tempfile

cat History >> $tempfile

mv $tempfile History

exit
