Project

Profile

Help

Task #103

Updated by bmbouter about 9 years ago

Redmine watches our commit messages for references to issue numbers with special keywords. keywords (re, closes, fixes). Add documentation to our contributor guide explaining these keywords. Here are the keywords we currently support: 

 These two will create a reference relationship, but will not change the state or %done of the referenced issue. 
 <pre> 
 re #123 
 ref #123 
 </pre> 

 This create a reference relationship, changes the state of the referenced issue to MODIFIED, and sets the %done to 100 on the referenced issue. 
 <pre> 
 fixes #123 
 closes #123 
 </pre>

Back