Changes between Initial Version and Version 1 of DevNotes/DevGuide/CommitMessage


Ignore:
Timestamp:
Apr 1, 2019 6:34:08 AM (5 years ago)
Author:
butler
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevNotes/DevGuide/CommitMessage

    v1 v1  
     1= How to link commits and pull requests with !GitHub issue actions = 
     2 
     3Issues being addressed by a commit or pull request should be referred to in that commit or pull request. Most often you will be closing the issue with the pull request.  To do so use one of the magic words below in the commit message or the pull request. 
     4 
     5To refer to issues in commit messages simply type the issue ref such as #10. In order to have the issue be closed whenever the change is merged into master, the syntax is of the form [command] [issueno]. A colon between the command and the issue reference is allowed as is capitalization of the command.  The allowed commands are given below: 
     6 
     7{{{ 
     8close 
     9closes 
     10closed 
     11fix 
     12fixes 
     13fixed 
     14resolve 
     15resolves 
     16resolved 
     17}}} 
     18 
     19 
     20**NOTE**: unlike with track each issue to be closed **must** be **individually** prefaced by the command.for example: 
     21{{{ 
     22closes #10 and will also Close #11 
     23}}} 
     24 
     25The full documentation is available on github: ​​https://help.github.com/en/articles/closing-issues-using-keywords 
     26