Changes between Version 67 and Version 68 of FAQ


Ignore:
Timestamp:
Jul 21, 2011, 3:08:55 PM (13 years ago)
Author:
Dimitar Misev
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v67 v68  
    145145=== I want to submit a patch, how do I do this? ===
    146146
    147  * Follow these steps:
    148   1. Set your credentials:
     147 1. Set your credentials:
    149148{{{
    150149$ git config user.name "Konstantin Kozlov"
    151150$ git config user.email ...
    152151}}}
    153   2. When you commit your changes to your local copy put a meaningful message:
     152 2. When you commit your changes to your local copy put a meaningful message:
    154153{{{
    155154$ git commit -a -m "commit message"
    156155}}}
    157   3. Then you can make the patch, e.g:
     156 3. Then you can make the patch, e.g:
    158157{{{
    159158$ git-format-patch HEAD~1