Skip to content

Instantly share code, notes, and snippets.

@t-io
Forked from leesmith/commit-message-syntax.txt
Last active August 29, 2015 14:08
Show Gist options
  • Save t-io/2c80424517b97c909f90 to your computer and use it in GitHub Desktop.
Save t-io/2c80424517b97c909f90 to your computer and use it in GitHub Desktop.

Revisions

  1. @leesmith leesmith created this gist Dec 31, 2011.
    29 changes: 29 additions & 0 deletions commit-message-syntax.txt
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,29 @@
    https://www.pivotaltracker.com/help/api?version=v3#github_hooks
    https://www.pivotaltracker.com/help/api?version=v3#scm_post_commit_message_syntax

    SCM Post-Commit Message Syntax

    To associate an SCM commit with a specific Tracker story, you must include a special syntax in the commit message to indicate one or more story IDs and (optionally) a state change for the story. Your commit message should have square brackets containing a hash mark followed by the story ID. If a story was not already started (it was in the "not started" state), a commit message will automatically start it. For example, if Scotty uses the following message when committing SCM revision 54321:

    [#12345677 #12345678] Diverting power from warp drive to torpedoes.


    ...it will result in the following comment being added to Tracker stories 12345677 and 12345678, and the stories will be started if they were not yet started:

    Commit: Scotty
    54321

    [#12345677 #12345678] Diverting power from warp drive to torpedoes.



    To automatically finish a story by using a commit message, include "fixed", "completed" or "finished" in the square brackets in addition to the story ID. You may also use different cases or forms of these verbs, such as "Fix" or "FIXES", and they may appear before or after the story ID. Note: For features, this will put the story in the 'finished' state. For chores, it will put the story in the 'accepted' state. For example:

    [Fixes #12345678] Torpedoes now sufficiently powered.



    In some environments, code that is committed is automatically deployed. For this situation, include "delivers" and the story will be put in the 'delivered' state:

    [Delivers #12345679] Scotty can beam up Captain Kirk.