Changes between Version 5 and Version 6 of SubversionSpecificLogCommands
- Timestamp:
- 04/01/09 12:45:55 (17 months ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
SubversionSpecificLogCommands
v5 v6 1 = Subversion usage=1 = Subversion Specific Log Commands = 2 2 3 == = Changing Trac Ticket Status through Subversion Commit Log Messages ===3 == Reference a Ticket == 4 4 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 {{{ 6 svn commit -m "Refs #9999. Log message for this commit..." 7 }}} 8 9 will add 10 11 {{{ 12 Refs #9999. Log message for this commit... 13 }}} 14 15 to ticket 9999. 8 16 9 17 10 == = Subversion use/administration ===18 == Close a Ticket == 11 19 12 Guidelines for subversion use can be found at 20 {{{ 21 svn commit -m "Fixes #9999. Log message for this commit..." 22 }}} 23 24 will add 25 26 {{{ 27 Fixes #9999. Log message for this commit... 28 }}} 29 30 to 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 37 General guidelines for subversion use can be found at 13 38 [http://www.thep.lu.se/~jari/documents/subversion_guidelines/subversion_guidelines.html Local Subversion Guidelines].
