I put a mistake into a comment in SVN. Can I edit this after checkin?
|
|
|
Commit messages are "unversioned properties" and can be changed with the svn propset command, for example
This is setting the revision property called "svn:log" on revision 25 Configuring subversion to allow revision property changesBecause these are unversioned, a default installation of subversion won't let you modify 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:
This logs changes to svn:log revision properties, and allows the edit by using exit 0, any other revision property change is denied by using exit 1. See patmortech's answer for a Windows equivalent. |
||||
|
|
|
To enable the revision property modification, you need to create a pre-revprop-change hook script. Can read about it here: http://svnbook.red-bean.com/en/1.0/ch05s02.html (look for Hook Scripts section). For Windows, here's a link to an example batch file that only allows changes to the log message (not other properties): http://ayria.livejournal.com/33438.html. Basically copy the code below into a text file and name it pre-revprop-change.bat and save it in the /hooks subdirectory for your repository.
|
|||||||||||
|
|
A way to do a quick change to the log message without having to create a pre-revprop-change hook script is to use the following
where Two things: This requires filesystem access to the repository files, but so does creating a pre-revprop-change hook script... and secondly, this command will bypass any hook scripts that may be in place, so use advisedly... |
|||||
|
|
|
|||||
|
|
|||
|
|
|
Using Tortoise SVN will make this very very easy for you. Simply bring up the log messages window, right click the revision log you would like to edit, and choose Edit Log from the context menu. |
|||||||
|
|
In Eclipse (or Rational Application Developer) using Subclipse: choose Team --> Show History then Right-click the revision whose comments you wish to change, then choose "Set Commit Properties" and you can change the comment and/or author. |
|||
|
|