By making a contribution to this project, I certify that:
(a) 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
(b) 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
(c) The contribution was provided directly to me by some other
person who certified (a), (b) or (c) and I have not modified
it.
(d) 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.
See http://developercertificate.org/ for a copy of the Developer Certificate of Origin license.
Erlang/OTP is licensed under the Apache License 2.0, as stated in: LICENSE.txt
Report bugs at https://github.com/erlang/otp/issues. See Bug reports for more information.
You can contribute to Erlang/OTP by opening a Pull Request.
Make sure you create a new branch for your pull request with git checkout -b new-branch-name
.
Give the branch a short but descriptive name, like stdlib/lists-length-fix
.
Never do your work directly on maint
or master
.
-
In most cases, pull requests for bug fixes should be based on the
maint
branch. There are exceptions, for example corrections to bugs that have been introduced in themaster
branch. -
Include a test case to ensure that the bug is fixed and that it stays fixed.
-
TIP: Write the test case before fixing the bug so that you can know that it catches the bug.
-
For applications without a test suite in the git repository, it would be appreciated if you provide a small code sample in the commit message or attach a module to the PR that will provoke the failure.
-
In most cases, pull requests for new features should be based on the
master
branch. -
It is recommended to discuss new features in the erlang forums, especially for major new features or any new features in ERTS, Kernel, or STDLIB.
-
It is important to write a good commit message explaining why the feature is needed. We prefer that the information is in the commit message, so that anyone that want to know two years later why a particular feature can easily find out. It does no harm to provide the same information in the pull request (if the pull request consists of a single commit, the commit message will be added to the pull request automatically).
-
With few exceptions, it is mandatory to write a new test case that tests the feature. The test case is needed to ensure that the features does not stop working in the future.
-
Update the Documentation to describe the feature.
-
Make sure that the new feature builds and works on all major platforms. Exceptions are features that only makes sense one some platforms, for example the
win32reg
module for accessing the Windows registry. -
Make sure that your feature does not break backward compatibility. In general, we only break backward compatibility in major releases and only for a very good reason. Usually we first deprecate the feature one or two releases beforehand.
-
In general, language changes/extensions require an EEP (Erlang Enhancement Proposal) to be written and approved before they can be included in OTP. Major changes or new features in ERTS, Kernel, or STDLIB will need an EEP or at least a discussion on the mailing list.
- Make sure existing test cases don't fail. It is not necessary to run all tests (that would take many hours), but you should at least run the tests for the application you have changed.
- Make sure all static checks pass by calling
./otp_build check
. Call./otp_build check --help
for details on what./otp_build check
does. - Make sure that github actions passes, if you go to https://github.com/$YOUR_GITHUB_USER/otp/actions you can enable github actions builds for you otp fork.
See the Testing and Development howtos for details on how to use run tests and use the Erlang/OTP make system.
Make sure that your branch contains clean commits:
-
Don't make the first line in the commit message longer than 72 characters. Don't end the first line with a period.
-
Follow the guidelines for Writing good commit messages.
-
Don't merge
maint
ormaster
into your branch. Usegit rebase
if you need to resolve merge conflicts or include the latest changes. -
Each commit should represent a logical change, such as a feature added or bug fixed, and also include relevant changes to documentation and tests.
-
Each commit should compile separately and pass the most relevant test cases. This makes it possible to use the powerful
git bisect
command. -
Changes to multiple applications should be made in separate commits to facilitate code reviews, unless special circumstances motivates a single commit, such as not breaking the ability to build cleanly.
-
Check for unnecessary whitespace before committing with
git diff --check
. However, do not fix preexisting whitespace errors in otherwise untouched source lines.
Check your coding style:
-
Make sure your changes follow the coding and indentation style of the code surrounding your changes.
-
Do not commit commented-out code or files that are no longer needed. Remove the code or the files.
-
In most code (Erlang and C), indentation is 4 steps. Indentation using only spaces is strongly recommended.
If you use Emacs, use the Erlang mode, and add the following lines to .emacs
:
(setq-default indent-tabs-mode nil)
(setq c-basic-offset 4)
If you want to change the setting only for the Erlang mode, you can use a hook like this:
(add-hook 'erlang-mode-hook 'my-erlang-hook)
(defun my-erlang-hook ()
(setq indent-tabs-mode nil))
-
Follow the discussion following your pull request, answer questions, discuss and implement changes requested by reviewers. Smaller changes should be squashed into their associated commits.
-
If your pull requests introduces new public functions, they need to be tagged with the OTP release in which they will appear in the
since
tag in the functions' documentation. As this is generally not yet certain at the time when your PR gets merged, the person assigned to your pull request should give you an internal ticket number (for exampleOTP-12345
) to use as a placeholder in the respectivesince
tags, like-doc #{ since => ~"OTP @OTP-12345@" }.
. When your new functions are released with an OTP release, this placeholder will get replaced with the actual OTP version, leading to something like "OTP 26.0". -
If you are asked to write a release note for your pull request, see Writing release notes for advice.