<html>
<head>
    <base href="https://wiki.asterisk.org/wiki">
            <link rel="stylesheet" href="/wiki/s/2042/1/7/_/styles/combined.css?spaceKey=AST&amp;forWysiwyg=true" type="text/css">
    </head>
<body style="background: white;" bgcolor="white" class="email-body">
<div id="pageContent">
<div id="notificationFormat">
<div class="wiki-content">
<div class="email">
    <h2><a href="https://wiki.asterisk.org/wiki/display/AST/Commit+Messages">Commit Messages</a></h2>
    <h4>Page <b>edited</b> by             <a href="https://wiki.asterisk.org/wiki/display/~lmadsen">Leif Madsen</a>
    </h4>
        <div id="versionComment">
        <b>Comment:</b>
        Update text based on feedback from Alex<br />
    </div>
        <br/>
                         <h4>Changes (2)</h4>
                                 
    
<div id="page-diffs">
                    <table class="diff" cellpadding="0" cellspacing="0">
    
            <tr><td class="diff-snipped" >...<br></td></tr>
            <tr><td class="diff-unchanged" >When making a commit for a mantis issue, it is easiest to use the  provided commit message template functionality. It will format the  special tags appropriately, and will also include information about who  reported the issue, which patches are being applied, and who did  testing. <br> <br></td></tr>
            <tr><td class="diff-deleted-lines" style="color:#999;background-color:#fdd;text-decoration:line-through;">Assuming that you have bug marshal access (and if you have commit  access, it is pretty safe to assume that you do), you will find the  commit message template section directly below the issue details section  and above the issue relationships section. You will have to click the  &#39;+&#39; next to &quot;Commit message template&quot; to make the contents of the  section visible. <br></td></tr>
            <tr><td class="diff-added-lines" style="background-color: #dfd;">Assuming that you have _bug_ _marshal_ access to the issue tacker (and if you have commit access, it is pretty safe to assume that you do or will after you logout and back in), you will find the *Commit message template* section directly below the issue details section and above the issue relationships section. You will have to click on the *+* next to *Commit message template* to make the contents of the section visible. <br></td></tr>
            <tr><td class="diff-unchanged" > <br>Here is an example of what the template will generate for you: <br></td></tr>
            <tr><td class="diff-snipped" >...<br></td></tr>
    
            </table>
    </div>                            <h4>Full Content</h4>
                    <div class="notificationGreySide">
        

<div>
<ul>
    <li><a href='#CommitMessages-CommitMessageFormatting'>1. Commit Message Formatting</a></li>
    <li><a href='#CommitMessages-SpecialTagsforCommitMessages'>2. Special Tags for Commit Messages</a></li>
<ul>
    <li><a href='#CommitMessages-Mantis%28https%3A%2F%2Fissues.asterisk.org%2F%29'>2.1. Mantis ( https://issues.asterisk.org/)</a></li>
    <li><a href='#CommitMessages-ReviewBoard%28https%3A%2F%2Freviewboard.asterisk.org%2F%29'>2.2. Review Board ( https://reviewboard.asterisk.org/)</a></li>
</ul>
    <li><a href='#CommitMessages-CommitMessageswithsvnmerge'>3. Commit Messages with svnmerge</a></li>
</ul></div>

<h1><a name="CommitMessages-CommitMessageFormatting"></a>1. Commit Message Formatting</h1>

<p>The following illustrates the basic outline for commit messages:<br class="atl-forced-newline" /> </p>

<div class="code panel" style="border-width: 1px;"><div class="codeContent panelContent">
<script type="syntaxhighlighter" class="toolbar: false; theme: Confluence; brush: java; gutter: false"><![CDATA[
  &lt;One-liner summary of changes&gt;

  &lt;Empty Line&gt;

  &lt;Verbose description of the changes&gt;

  &lt;Empty Line&gt;

  &lt;Special Tags&gt;
]]></script>
</div></div>

<p>Some commit history viewers treat the first line of commit messages as  the summary for the commit. So, an effort should be made to format our  commit messages in that fashion. The verbose description may contain  multiple paragraphs, itemized lists, etc. Always end the first sentence  (and any subsequent sentences) with punctuation.</p>

<p>Commit messages should be wrapped at 80 columns.</p>

<p>Note that for trivial commits, such as "fix the build", or "fix spelling mistake", the verbose description may not be necessary.</p>


<h1><a name="CommitMessages-SpecialTagsforCommitMessages"></a>2. Special Tags for Commit Messages</h1>


<h2><a name="CommitMessages-Mantis%28https%3A%2F%2Fissues.asterisk.org%2F%29"></a>2.1. Mantis (<a href="https://issues.asterisk.org/" class="external-link" rel="nofollow">https://issues.asterisk.org/</a>)</h2>

<p>To have a commit noted in an issue, use a tag of the form:</p>

<div class="preformatted panel" style="border-width: 1px;"><div class="preformattedContent panelContent">
<pre>(issue #1234)
</pre>
</div></div>

<p>To have a commit automatically close an issue, use a tag of the form:</p>

<div class="preformatted panel" style="border-width: 1px;"><div class="preformattedContent panelContent">
<pre>(closes issue #1234)
</pre>
</div></div>

<p>When making a commit for a mantis issue, it is easiest to use the  provided commit message template functionality. It will format the  special tags appropriately, and will also include information about who  reported the issue, which patches are being applied, and who did  testing.</p>

<p>Assuming that you have <em>bug</em> <em>marshal</em> access to the issue tacker (and if you have commit access, it is pretty safe to assume that you do or will after you logout and back in), you will find the <b>Commit message template</b> section directly below the issue details section and above the issue relationships section. You will have to click on the <b>+</b> next to <b>Commit message template</b> to make the contents of the section visible.</p>

<p>Here is an example of what the template will generate for you:</p>
<div class="preformatted panel" style="border-width: 1px;"><div class="preformattedContent panelContent">
<pre>(closes issue #1234)
Reported by: SomeGuy
Patches:
     fix_bug_1234.diff uploaded by SomeDeveloper (license 5678)
</pre>
</div></div>

<p>If the patch being committed was written by the person doing the commit,  and is not available to reference as an upload to the issue, there is  no need to include something like "fixed by me", as that will be the  default assumption when a specific patch is not referenced.</p>

<h2><a name="CommitMessages-ReviewBoard%28https%3A%2F%2Freviewboard.asterisk.org%2F%29"></a>2.2. Review Board (<a href="https://reviewboard.asterisk.org/" class="external-link" rel="nofollow">https://reviewboard.asterisk.org/</a>)</h2>

<p>To have a commit set a review request as submitted, include the full URL  to the review request. For example:</p>

<div class="preformatted panel" style="border-width: 1px;"><div class="preformattedContent panelContent">
<pre>Review: https://reviewboard.asterisk.org/r/95/
</pre>
</div></div>

<h1><a name="CommitMessages-CommitMessageswithsvnmerge"></a>3. Commit Messages with svnmerge</h1>

<p>When using the svnmerge tool for merging changes between branches, use  the commit message generated by svnmerge. The '-f' option to svnmerge  allows you to specify a file for svnmerge to write out a commit message  to. The '-F' option to svn commit allows you to specify a file that  contains the commit message.</p>

<p>If you are using the expect script wrappers for svnmerge from repotools,  a commit message is automatically placed in the file '../merge.msg'.</p>

<p>For more detailed information about working with branches and merging,  see <a href="/wiki/display/AST/Subversion+Usage" title="Subversion Usage">Subversion Usage</a>.</p>

    </div>
        <div id="commentsSection" class="wiki-content pageSection">
        <div style="float: right;">
            <a href="https://wiki.asterisk.org/wiki/users/viewnotifications.action" class="grey">Change Notification Preferences</a>
        </div>
        <a href="https://wiki.asterisk.org/wiki/display/AST/Commit+Messages">View Online</a>
        |
        <a href="https://wiki.asterisk.org/wiki/pages/diffpagesbyversion.action?pageId=3702833&revisedVersion=5&originalVersion=4">View Changes</a>
                |
        <a href="https://wiki.asterisk.org/wiki/display/AST/Commit+Messages?showComments=true&amp;showCommentArea=true#addcomment">Add Comment</a>
            </div>
</div>
</div>
</div>
</div>
</body>
</html>