Changes between Version 108 and Version 109 of FAQ


Ignore:
Timestamp:
Jul 4, 2013, 2:09:48 PM (11 years ago)
Author:
Dimitar Misev
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v108 v109  
    279279 2. When you commit your changes to your local copy put a meaningful message:
    280280{{{
    281 $ git commit file1 file2 ... -m "commit message"
    282 }}}
     281$ git commit file1 file2 ... -m "ticket:NUMBER - commit message"
     282}}}
     283 The subject of the patch '''must''' start with "ticket:NUMBER - ", where NUMBER is a valid ticket number on this trac. For example this is a valid subject: "ticket:231 - subject message...".
    283284 It's best to '''always''' specify exactly the files that you want to commit, instead of committing everything with the `-a` option, so that you avoid submitting unnecessary changes in your patch.
    284285 3. Then you can make the patch, e.g: