Ticket #17334: 17334.diff

File 17334.diff, 972 bytes (added by Christopher Medrela, 12 years ago)
  • docs/internals/contributing/committing-code.txt

    diff --git a/docs/internals/contributing/committing-code.txt b/docs/internals/contributing/committing-code.txt
    index e33269b..6efb8f2 100644
    a b repository:  
    4949  immediately, so you may have to wait a couple of days before getting a
    5050  response.
    5151
    52 * Write detailed commit messages in the past tense, not present tense.
     52* When you write detailed commit messages, use this pattern::
    5353
    54   * Good: "Fixed Unicode bug in RSS API."
    55   * Bad: "Fixes Unicode bug in RSS API."
    56   * Bad: "Fixing Unicode bug in RSS API."
     54  [<Django version>] Fixed <ticket> -- <description> Backport of <revision>
     55
     56  For example::
     57
     58  [1.3.X] Fixed #17028 - Changed diveintopython.org -> diveintopython.net. Backport of r17115.
    5759
    5860* For commits to a branch, prefix the commit message with the branch name.
    5961  For example: "magic-removal: Added support for mind reading."
Back to Top