Changes between Version 61 and Version 62 of FAQ


Ignore:
Timestamp:
Jul 21, 2011, 10:42:48 AM (13 years ago)
Author:
Dimitar Misev
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v61 v62  
    152152 * '''Q: I want to submit a patch, how do I do this?
    153153A: Follow these steps:
    154   * Set your credentials:
     154  1. Set your credentials:
    155155{{{
    156156$ git config user.name "Konstantin Kozlov"
    157157$ git config user.email ...
    158158}}}
    159   * When you commit your changes to your local copy put a meaningful message:
     159  2. When you commit your changes to your local copy put a meaningful message:
    160160{{{
    161161$ git commit -a -m "commit message"
    162162}}}
    163       * Then you can make the patch, e.g:
     163  3. Then you can make the patch, e.g:
    164164{{{
    165165$ git-format-patch HEAD~1