Revision: 10310
Initial Code
Initial URL
Initial Description
Initial Title
Initial Tags
Initial Language
at December 18, 2008 02:41 by otaqui
Initial Code
# Log subversion commits to a file. Useful for changelogs.
#
# one commit per-line, in the format:
# UTC_DATE_STRING | author | commit message
#
# Will store the log inside the repo directory, in a file called "log"
REPOS="$1"
REV="$2"
LOG="log"
lognote=`svnlook date $REPOS`
lognote="$lognote | `svnlook author $REPOS`"
lognote="$lognote | `svnlook log $REPOS`"
echo $lognote >> ${REPOS}/${LOG}
Initial URL
Initial Description
Initial Title
SVN Post Commit Log Note
Initial Tags
svn, Bash
Initial Language
Bash