File: howtocontribute.rst

package info (click to toggle)
kworkflow 20191112-1.2
  • links: PTS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 2,836 kB
  • sloc: perl: 7,354; sh: 2,397; ansic: 80; python: 44; makefile: 38
file content (154 lines) | stat: -rw-r--r-- 6,215 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
=====================
  How to Contribute
=====================

.. contents::
   :depth: 1
   :local:
   :backlinks: none

.. highlight:: console

Overview
--------
The Linux Kernel and Git community inspired our contribution process. As a
result, this document is directly based on their contribution documentation.
In particular, the text under 'Commit Messages' and 'Certify Your Work by Adding
Your "Signed-off-by: " Line' are directly copied-and-pasted from Git's
SubmittingPatches doc (with some modifications). For the original document,
please check https://git-scm.com/docs/SubmittingPatches/

Development Cycle and Branches
------------------------------
Our development cycle relies on two different branches:

1. **master**: We maintain the kw stable version in the master branch, and we
try our best to keep master working well for final users. If you only want to
use kw, this branch is perfect for you.

2. **ustable**: This branch has the kw latest version, and it is the
development branch. If you want to contribute to kw, base your work in this
branch.

.. warning::
   If you want to contribute to `kw`, use the **unstable** branch and send your
   pull requests to this branch.

From time to time, when we feel happy with the unstable version, we merge the
commit from the unstable version to master. The Figure below summarizes the
development cycle.

.. image:: ../images/dev_cycle.png
   :alt: Development cycle
   :align: center

.. note::
    One of our main goals it keeps kw stable, in this sense, **if you send a
    new patch do not forget to add tests**. If you want to know more about
    tests, take a look at `About Tests` page.

Commit Messages
---------------

The first line of the commit message should be a short description (50
characters is the soft limit), and should skip the full stop. It is also
conventional in most cases to prefix the first line with "area: " where the
area is a filename or identifier for the general area of the code being
modified, e.g.

* setup: disable unnecessary download of checkpatch script
* src: mk: remove unnecessary multiplication of PARALLEL_CORES

If in doubt which identifier to use, run `git log --no-merges` on the files you
are modifying to see the current conventions.

It's customary to start the remainder of the first line after "area: " with a
lower-case letter. E.g. "doc: clarify...", not "doc: Clarify...". (But as you
might see in our log, that's a soft rule in kw.)

The body should provide a meaningful commit message, which:

* explains the problem the change tries to solve, i.e. what is wrong
  with the current code without the change.

* justifies the way the change solves the problem, i.e. why the
  result with the change is better.

* alternate solutions considered but discarded, if any.

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 frotz", as if
you are giving orders to the codebase to change its behavior. Try to make sure
your explanation can be understood without external resources. At the bottom of
the message body, you might include references to the issues that the said
commit solves. This can be something like "Solves #30", "Fixes: #28" or
"Closes #10".

Certify Your Work by Adding Your "Signed-off-by: " Line
-------------------------------------------------------

To improve tracking of who did what, we've borrowed the "sign-off" procedure
from the Linux kernel project on patches that are being emailed around.
Although core Git is a lot smaller project it is a good discipline to follow
it.

The sign-off is a simple line at the end of the explanation for the patch,
which certifies that you wrote it or otherwise have the right to pass it on as
an open-source patch.  The rules are pretty simple: if you can certify the
below Developer's Certificate of Origin (D-C-O):

.. important::
    By making a contribution to this project, I certify that:

    1. The contribution was created in whole or in part by me and I have the
    right to submit it under the open source license indicated in the file; or

    2. The contribution is based upon previous work that, to the best of my
    knowledge, is covered under an appropriate open source license and I have
    the right under that license to submit that work with modifications,
    whether created in whole or in part by me, under the same open source
    license (unless I am permitted to submit under a different license), as
    indicated in the file; or

    3. The contribution was provided directly to me by some other person who
    certified (a), (b) or (c) and I have not modified it.

    4. I understand and agree that this project and the contribution are public
    and that a record of the contribution (including all personal information I
    submit with it, including my sign-off) is maintained indefinitely and may
    be redistributed consistent with this project or the open source license(s)
    involved.

then you just add a line saying::

 Signed-off-by: Xpto Lalala Blabla <xpto@developer.example.org>

This line can be automatically added by Git if you run the git-commit
command with the `-s` option.

Notice that you can place your own Signed-off-by: line when forwarding somebody
else's patch with the above rules for D-C-O.  Indeed you are encouraged to do
so.

.. note::
  Also notice that a real name is used in the Signed-off-by: line. Please don't
  hide your real name.

If you like, you can put extra tags at the end:

    1. Reported-by: is used to credit someone who found the bug that the patch
    attempts to fix.

    2. Acked-by: says that the person who is more familiar with the area the
    patch attempts to modify liked the patch.

    3. Reviewed-by:, unlike the other tags, can only be offered by the reviewer
    and means that she is completely satisfied that the patch is ready for
    application. It is usually offered only after a detailed review.

    4. Tested-by: is used to indicate that the person applied the patch and
    found it to have the desired effect.

You can also create your own tag or use one that’s in common usage such as
`Co-authored-by` or `Helped-by`.