Changes between Version 5 and Version 6 of SubversionSpecificLogCommands

Show
Ignore:
Timestamp:
04/01/09 12:45:55 (17 months ago)
Author:
gregory
Comment:

Added example on wiki for svn log messages

Legend:

Unmodified
Added
Removed
Modified
  • SubversionSpecificLogCommands

    v5 v6  
    1 = Subversion usage = 
     1= Subversion Specific Log Commands = 
    22 
    3 === Changing Trac Ticket Status through Subversion Commit Log Messages === 
     3== Reference a Ticket == 
    44 
    5 By using special command strings in a subversion commit log message, you may automatically change the status of trac tickets 
    6 or add text to their notes. For description and examples, see 
    7 [http://www.thep.lu.se/~jari/documents/subversion_guidelines/node4.html#SECTION000419000000000000000 here]. 
     5{{{ 
     6svn commit -m "Refs #9999. Log message for this commit..." 
     7}}} 
     8 
     9will add  
     10 
     11{{{ 
     12Refs #9999. Log message for this commit... 
     13}}} 
     14 
     15to ticket 9999. 
    816 
    917 
    10 === Subversion use/administration === 
     18== Close a Ticket == 
    1119 
    12 Guidelines for subversion use can be found at 
     20{{{ 
     21svn commit -m "Fixes #9999. Log message for this commit..." 
     22}}} 
     23 
     24will add  
     25 
     26{{{ 
     27Fixes #9999. Log message for this commit... 
     28}}} 
     29 
     30to ticket 9999 and close it with status '''fixed'''. 
     31 
     32[http://www.thep.lu.se/~jari/documents/subversion_guidelines/node4.html#SECTION000419000000000000000 Learn more...]. 
     33 
     34 
     35== Subversion use/administration == 
     36 
     37General guidelines for subversion use can be found at 
    1338[http://www.thep.lu.se/~jari/documents/subversion_guidelines/subversion_guidelines.html Local Subversion Guidelines].