CONTIBUTING.md: Added multiple authors

This commit is contained in:
2025-03-20 03:33:52 +03:00
parent 82e2b25a9e
commit b95e259742

View File

@@ -43,18 +43,29 @@ Commit message body, if needed
``` ```
- Commit message header and body should reflect changes made in commit - 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 - Commit message body should be separated from the header by one empty line
### Length ### 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. 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 <ANOTHER-NAME@EXAMPLE.COM>
```
to the end commit message body on a new line.
### Merge commits
> [!WARNING] > [!WARNING]
> Merge commits are **prohibited** in the project > Merge commits are **prohibited** in the project
Use **rebase** to keep your branch up to date.
## Conclusion ## 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. 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.