Changes between Initial Version and Version 1 of GitCommitRules


Ignore:
Timestamp:
2018-02-24T20:25:16Z (7 years ago)
Author:
Jakub Jermář
Comment:

Git

Legend:

Unmodified
Added
Removed
Modified
  • GitCommitRules

    v1 v1  
     1= Git Commit Rules =
     2
     3Make smaller, logically related commits rather than one huge commit. Make sure that each commit is accompanied by a commit message that follows the example below. The first line should be a short description of **WHAT** the commit does written in imperative mood. It should not exceed 50 columns of text width and the trailing period should be omitted. The next line should be empty. Optionally, you may provide additional paragraphs that explain **WHY** the change was made. The text should not exceed 72 columns of width. Note that some editors will help you follow these rules by text highlighting. The entire commit message must be written in English.
     4
     5An example commit message may look like this:
     6
     7{{{
     8Make INTERFACE_LOC_SUPPLIER parallel
     9   
     10Location service sometimes needs to be able to process requests in
     11parallel in order to avoid deadlock.
     12}}}