diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 634f30289..e410e575f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -43,18 +43,29 @@ Commit message body, if needed ``` - Commit message header and body should reflect changes made in commit -- Commit message header should start with a capital letter - Commit message body should be separated from the header by one empty line ### Length Maximum number of characters in a commit header is **72** (standard for **Git**). Also, **72** is the maximum length of a line in a commit body. -## Merge commits +### Multiple authors + +If you are making a commit together with another developer, you need to add: + +``` +Co-authored-by: ANOTHER-NAME +``` + +to the end commit message body on a new line. + +### Merge commits > [!WARNING] > Merge commits are **prohibited** in the project +Use **rebase** to keep your branch up to date. + ## Conclusion We hope this small instructions will help you to get familiar with KolibriOS contribution rules and inspire you to participate in the work of this project.