Changes between Version 110 and Version 111 of FAQ


Ignore:
Timestamp:
Jul 15, 2013, 10:46:27 AM (11 years ago)
Author:
Dimitar Misev
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v110 v111  
    281281$ git commit file1 file2 ... -m "ticket:NUMBER - commit message"
    282282}}}
    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...".
     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...". To manually fix the subject after you have created the patch, edit the patch manually and adapt the ''Subject:'' line, e.g. from
     284{{{
     285Subject: [PATCH] invalid subject
     286}}}
     287to the below (make sure to not remove the [PATCH] part!)
     288{{{
     289Subject: [PATCH] ticket:NUMBER - commit message
     290}}}
    284291
    285292 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.