blob: 5d8cb8fa9daf979789c7273f9528b910dbd8f05c [file] [log] [blame]
Julian Halle76ade82020-11-25 03:07:21 +01001Contributing
2============
3
Gyorgy Szing8de278d2022-11-25 11:44:47 +01004Reporting Security Issues
5-------------------------
6
7Please follow the directions of the `Trusted Firmware Security Center`_
Julian Halle76ade82020-11-25 03:07:21 +01008
9Getting Started
10---------------
11
12- Make sure you have a GitHub account and you are logged on `developer.trustedfirmware.org`_.
13- Send an email to the |TS_MAIL_LIST| about your work. This gives everyone
14 visibility of whether others are working on something similar.
15- Clone the |TS_REPO| on your own machine.
Julian Halle76ade82020-11-25 03:07:21 +010016
17Making Changes
18--------------
19
20- Make commits of logical units. See these general `Git guidelines`_ for contributing to a project.
21- Follow the :ref:`Coding Style & Guidelines`.
22- Keep the commits on topic. If you need to fix another bug or make another enhancement, please create a separate
23 change.
24- Avoid long commit series. If you do have a long series, consider whether some
25 commits should be squashed together or addressed in a separate topic.
26- Make sure your commit messages are in the proper format. Please keel the 50/72 rule (for details see `Tim Popes blog entry`_.)
27- Where appropriate, please update the documentation.
28
Julian Halleed5b9c2022-04-05 15:33:50 +010029 - Consider which documents or other in-source documentation needs updating.
Julian Halle76ade82020-11-25 03:07:21 +010030 - Ensure that each changed file has the correct copyright and license information. Files that entirely consist of
31 contributions to this project should have a copyright notice and BSD-3-Clause SPDX license identifier of the form
Julian Halleed5b9c2022-04-05 15:33:50 +010032 as shown in :ref:`license`. Example copyright and license comment blocks are shown in :ref:`Coding Style & Guidelines`.
33 Files that contain changes to imported Third Party IP files should retain their original copyright and license
34 notices. For significant contributions you may add your own copyright notice in following format::
Julian Halle76ade82020-11-25 03:07:21 +010035
36 Portions copyright (c) [XXXX-]YYYY, <OWNER>. All rights reserved.
37
38 where XXXX is the year of first contribution (if different to YYYY) and YYYY is the year of most recent
39 contribution. *<OWNER>* is your name or your company name.
Julian Halleed5b9c2022-04-05 15:33:50 +010040 - For any change, ensure that YYYY is updated if a contribution is made in a year more recent than the previous YYYY.
Julian Halle76ade82020-11-25 03:07:21 +010041 - If you are submitting new files that you intend to be the technical sub-maintainer for (for example, a new platform
42 port), then also update the :ref:`maintainers` file.
43 - For topics with multiple commits, you should make all documentation changes (and nothing else) in the last commit
44 of the series. Otherwise, include the documentation changes within the single commit.
45
46- Please test your changes.
47
48Submitting Changes
49------------------
50
51- Ensure that each commit in the series has at least one ``Signed-off-by:`` line, using your real name and email
52 address. The names in the ``Signed-off-by:`` and ``Author:`` lines must match. If anyone else contributes to the
53 commit, they must also add their own ``Signed-off-by:`` line. By adding this line the contributor certifies the
54 contribution is made under the terms of the :download:`Developer Certificate of Origin <../../dco.txt>`.
55
56 More details may be found in the `Gerrit Signed-off-by Lines guidelines`_.
57
58- Ensure that each commit also has a unique ``Change-Id:`` line. If you have cloned the repository with the "`Clone with
59 commit-msg hook`" clone method, this should already be the case.
60
61 More details may be found in the `Gerrit Change-Ids documentation`_.
62
63- Submit your changes for review at https://review.trustedfirmware.org targeting the ``integration`` branch.
64
65 - The changes will then undergo further review and testing by the :ref:`maintainers`. Any review comments will be made
66 directly on your patch. This may require you to do some rework.
67
68 Refer to the `Gerrit Uploading Changes documentation`_ for more details.
69
70- When the changes are accepted, the :ref:`maintainers` will integrate them.
71
72 - Typically, the :ref:`maintainers` will merge the changes into the ``integration`` branch.
73 - If the changes are not based on a sufficiently-recent commit, or if they cannot be automatically rebased, then the
74 :ref:`maintainers` may rebase it on the ``main`` branch or ask you to do so.
75 - After final integration testing, the changes will make their way into the ``main`` branch. If a problem is found
76 during integration, the merge commit will be removed from the ``integration`` branch and the :ref:`maintainers` will
77 ask you to create a new patch set to resolve the problem.
78
79--------------
80
81.. _developer.trustedfirmware.org: https://developer.trustedfirmware.org
82.. _Git guidelines: http://git-scm.com/book/ch5-2.html
83.. _Gerrit Uploading Changes documentation: https://review.trustedfirmware.org/Documentation/user-upload.html
84.. _Gerrit Signed-off-by Lines guidelines: https://review.trustedfirmware.org/Documentation/user-signedoffby.html
85.. _Gerrit Change-Ids documentation: https://review.trustedfirmware.org/Documentation/user-changeid.html
86.. _`Tim Popes blog entry`: https://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
Gyorgy Szing8de278d2022-11-25 11:44:47 +010087.. _`Trusted Firmware Security Center`: https://developer.trustedfirmware.org/w/collaboration/security_center/
Julian Halle76ade82020-11-25 03:07:21 +010088
Julian Halleed5b9c2022-04-05 15:33:50 +010089*Copyright (c) 2020-2022, Arm Limited and Contributors. All rights reserved.*
Julian Halle76ade82020-11-25 03:07:21 +010090
91SPDX-License-Identifier: BSD-3-Clause