I have a local run ubersvn repository in my computer and I would like to modify a commit message that I have on my last commit. Is there anyway through ubersvn or tortoisesvn (which I use as an interface) to change the commit message of a previous commit? I am an admin.
Modifying a commit message
321 Views Asked by mmurphy At
2
There are 2 best solutions below
0

Commit log message is property of revision svn:log
, which you can, as any other svn-property, edit with svn propedit
.
PS: and viewed with proplist
>svn proplist --revprop -r "HEAD" http://mayorat.ursinecorner.ru:8088/svn/Hello/ -v
Unversioned properties on revision 34:
svn:author
lazybadger
svn:date
2012-03-24T06:28:12.536500Z
svn:log
Added file with vowels in filename
From TurtoiseSvn - Show log -> Edit log message.