2024-10-03 14:27:37 +00:00
|
|
|
# Contribution Guidelines
|
|
|
|
|
|
|
|
This document contains guidelines for contributing code to `yr`. It has to be
|
|
|
|
followed in order for your patch to be approved and applied.
|
|
|
|
|
|
|
|
## Contribution Channels
|
|
|
|
|
|
|
|
Anyone can contribute to `yr`. First you need to clone the repository and build
|
|
|
|
the project:
|
|
|
|
|
|
|
|
```bash
|
|
|
|
git clone https://git.sr.ht/~timharek/yr
|
|
|
|
cd yr
|
|
|
|
```
|
|
|
|
|
|
|
|
Patch the code. Write some tests. Ensure that your code is properly formatted
|
|
|
|
with `just fmt`. Ensure that everything builds and works as expected. Ensure
|
|
|
|
that you did not break anything.
|
|
|
|
|
|
|
|
- If applicable, update unit tests.
|
|
|
|
- If adding a new feature, please consider adding new tests.
|
|
|
|
- Do not forget to update the docs.
|
|
|
|
|
|
|
|
Once you are happy with your work, you can create a commit (or several
|
|
|
|
commits). Follow these general rules:
|
|
|
|
|
|
|
|
- Limit the first line (title) of the commit message to 60 characters.
|
|
|
|
- Use a short prefix for the commit title for readability with `git log --oneline`.
|
|
|
|
- Use the body of the commit message to actually explain what your patch does
|
2024-10-03 17:52:46 +00:00
|
|
|
and why it is useful. Even if your patch is an one line fix, the description
|
2024-10-03 14:27:37 +00:00
|
|
|
is not limited in length and may span over multiple paragraphs. Use proper
|
|
|
|
English syntax, grammar and punctuation.
|
|
|
|
- Address only one issue/topic per commit.
|
|
|
|
- Describe your changes in imperative mood, e.g. _"make xyzzy do frotz"_
|
|
|
|
instead of _"[This patch] makes xyzzy do frotz"_ or _"[I] changed xyzzy to do
|
2024-10-03 17:52:46 +00:00
|
|
|
frotz"_, as if you are giving orders to the codebase to change its behavior.
|
2024-10-03 14:27:37 +00:00
|
|
|
- If you are fixing a ticket, use appropriate
|
|
|
|
[commit trailers](https://man.sr.ht/git.sr.ht/#referencing-tickets-in-git-commit-messages).
|
|
|
|
- If you are fixing a regression introduced by another commit, add a `Fixes:`
|
|
|
|
trailer with the commit id and its title.
|
|
|
|
- When in doubt, follow the format and layout of the recent existing commits.
|
|
|
|
|
|
|
|
There is a great reference for commit messages in the
|
|
|
|
[Linux kernel documentation](https://www.kernel.org/doc/html/latest/process/submitting-patches.html#describe-your-changes).
|
|
|
|
|
|
|
|
And send the patch to the mailing list ([step-by-step
|
|
|
|
instructions][git-send-email-tutorial]):
|
|
|
|
|
|
|
|
```bash
|
|
|
|
git send-email --annotate -1
|
|
|
|
```
|
|
|
|
|
|
|
|
Before your patch can be applied, it needs to be reviewed and approved by
|
|
|
|
others. They will indicate their approval by replying to your patch with
|
|
|
|
a [Tested-by, Reviewed-by or Acked-by][linux-review] (see also: [the git
|
|
|
|
wiki][git-trailers]) trailer. For example:
|
|
|
|
|
2024-10-03 17:52:46 +00:00
|
|
|
You can follow the review process via email and on the [web UI].
|
2024-10-03 14:27:37 +00:00
|
|
|
|
|
|
|
Wait for feedback. Address comments and amend changes to your original commit.
|
|
|
|
Then you should send a v2 (and maybe a v3, v4, etc.):
|
|
|
|
|
|
|
|
```bash
|
|
|
|
git send-email --annotate v2 -1
|
|
|
|
```
|
|
|
|
|
2024-10-03 17:52:46 +00:00
|
|
|
Be polite, patient and address _all_ the reviewers' remarks. If you disagree
|
2024-10-03 14:27:37 +00:00
|
|
|
with something, feel free to discuss it.
|
|
|
|
|
|
|
|
Once your patch has been reviewed and approved (and if the maintainer is OK
|
|
|
|
with it), it will be applied and pushed.
|
|
|
|
|
|
|
|
IMPORTANT: Do NOT use `--in-reply-to` when sending followup versions of a patch
|
|
|
|
set. It causes multiple versions of the same patch to be merged under v1 in the
|
2024-10-03 17:52:46 +00:00
|
|
|
[web UI]
|
2024-10-03 14:27:37 +00:00
|
|
|
|
2024-10-03 17:52:46 +00:00
|
|
|
[web UI]: https://lists.sr.ht/~timharek/yr/patches
|
2024-10-03 14:27:37 +00:00
|
|
|
[git-send-email-tutorial]: https://git-send-email.io/
|
|
|
|
[git-trailers]: https://git.wiki.kernel.org/index.php/CommitMessageConventions
|
|
|
|
[linux-review]: https://www.kernel.org/doc/html/latest/process/submitting-patches.html#using-reported-by-tested-by-reviewed-by-suggested-by-and-fixes
|