Changes between Version 6 and Version 7 of HowToChangeLog
- Timestamp:
- Feb 19, 2011, 5:15:24 PM (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
HowToChangeLog
v6 v7 1 == How to change a revision message == 2 1 = How to change a revision message as a user = 3 2 4 3 1) First we change the log message in the GiBUU repository. For this we go to the ''workingCode'' directory and type … … 14 13 }}} 15 14 16 2) Now an '''admin (!!)''' needs to resync the TRAC project. For this purpose he logs in ''tp11'' and goes to the ''/srv/www/htdocs/tracProject'' directory and types 15 2) Now an '''admin (!!)''' needs to resync the TRAC project - so give him a call... 16 17 18 = HOWTO: Change an svn log message as an administrator = 19 20 This is what you have to do to change an svn log message after the commit has been made ... 21 == Step 1: Modify the log == 22 23 This must be done by referring to the repository's location on the filesystem. You cannot modify a remote repository using this command. 17 24 18 25 {{{ 19 trac-admin GiBUU resync 26 svnadmin setlog REPOS_PATH -r N FILE 20 27 }}} 21 28 29 where REPOS_PATH is the repository location, N is the revision number whose log message you wish to change, and FILE is a file containing the new log message. 30 31 REPOS_PATH = /home/svn/buu/GiBUU on tp11! 32 33 cf. http://subversion.apache.org/faq.html#change-log-msg 34 35 == Step 2: Update the trac cache == 36 37 {{{ 38 trac-admin /srv/www/htdocs/tracProject/GiBUU resync 39 }}} 40 41 cf. http://trac.edgewall.org/wiki/TracAdmin 42