Skip to content

Latest commit

 

History

History
28 lines (16 loc) · 770 Bytes

CONTRIBUTING.md

File metadata and controls

28 lines (16 loc) · 770 Bytes

Commit rules

When committing to the Git repository, please follow these rules:

  • Put only related changes into a single commit.

  • Use correct spelling for the author name (for example, include all diacritics).

  • Use Markdown for the entire commit message (subject line and body).

  • Separate the subject line from the body with a blank line.

  • Limit the subject line to 58 characters.

  • Start the subject line with a capital letter.

  • Do not end the subject line with a period.

  • Use the imperative mood in the subject line.

  • Wrap the body at 72 characters.

  • Use the body to explain the what and why, not the how.

Several of these rules have been taken from https://chris.beams.io/posts/git-commit/#seven-rules.