Changes between Version 4 and Version 5 of CodingTips
- Timestamp:
- 2018-02-24T20:07:10Z (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
CodingTips
v4 v5 9 9 * Doxygen and regular comments 10 10 * Adhere to RCS rules from the very beginnning 11 * Use Bazaarfor revision control11 * Use Git for revision control 12 12 * Separate into reasonably-sized changesets 13 * Changeset comments must be complete, descriptive English sentences, typically in infinitive/imperative tense13 * 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. 14 14 {{{ 15 Example: Fix DNS resolution not working due to missing local address. 16 }}} 15 Make INTERFACE_LOC_SUPPLIER parallel 16 17 Location service sometimes needs to be able to process requests in 18 parallel in order to avoid deadlock. 19 }}} 17 20 18 21 == Recommended coding practices ==