Fixed messages are "unbelievable properties" and can be changed using svn propset , for example
$ svn propset --revprop -r 25 svn:log "Journaled about trip to New York." property 'svn:log' set on repository revision '25'
This sets the revision property called "svn: log" in revision 25
Configuring subversion to change change properties
Since they are not converted, setting subversion by default will not allow you to change these properties unless you provide a pre-revprop-change hook script.
Here's a typical script, from / var / lib / svn / hooks / pre -revprop-change on my system:
#!/bin/sh REPOS="$1" REV="$2" USER="$3" PROPNAME="$4" ACTION="$5" if [ "$ACTION" = "M" -a "$PROPNAME" = "svn:log" ]; then echo "$1 $2 $3 $4 $5" >> /var/lib/svn/logchanges.log exit 0; fi echo "Changing revision properties other than svn:log is prohibited" >&2 exit 1
This log changes the properties of svn: log and allows editing with exit 0, any other change to the version property is rejected with output 1. See patmortech answer for the Windows equivalent.
Paul Dixon Mar 28 '09 at 14:52 2009-03-28 14:52
source share