Changes between Version 76 and Version 77 of FAQ


Ignore:
Timestamp:
Oct 19, 2011, 12:07:32 PM (13 years ago)
Author:
Dimitar Misev
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • FAQ

    v76 v77  
    180180 2. When you commit your changes to your local copy put a meaningful message:
    181181{{{
    182 $ git commit -a -m "commit message"
     182$ git commit file1 file2 ... -m "commit message"
    183183}}}
     184 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.
    184185 3. Then you can make the patch, e.g:
    185186{{{