2013-06-24 13:41:48 +02:00
|
|
|
How to submit changes
|
|
|
|
=====================
|
|
|
|
|
|
|
|
Please try to follow the guidelines below. They will make things
|
|
|
|
easier on the maintainers. Not all of these guidelines matter for every
|
|
|
|
trivial change so apply some common sense.
|
|
|
|
|
2018-04-24 22:29:08 +02:00
|
|
|
If you are unsure about something written here, ask on the XCP-ng forum https://xcp-ng.org/forum/
|
2013-06-24 13:41:48 +02:00
|
|
|
|
2020-03-11 16:15:25 +01:00
|
|
|
0. Before starting a big project, discuss it on the forum first :-)
|
2013-06-24 13:41:48 +02:00
|
|
|
|
|
|
|
1. Always test your changes, however small, by both targetted
|
|
|
|
manual testing and by running the unit tests.
|
|
|
|
|
|
|
|
2. When adding new functionality, include test cases for any
|
|
|
|
* important; or
|
|
|
|
* difficult to manually test; or
|
|
|
|
* easy to break
|
|
|
|
new code.
|
|
|
|
|
2018-04-24 22:29:08 +02:00
|
|
|
3. Make your patch(es) available by creating one or more github pull requests.
|
2014-01-13 16:29:25 +01:00
|
|
|
Each pull request should be separately reviewable and mergable. Only patches
|
|
|
|
which must be committed together should be in the same pull request.
|
2013-06-24 13:41:48 +02:00
|
|
|
|
2018-04-24 22:29:08 +02:00
|
|
|
4. Each patch should include a descriptive commit comment that helps
|
2013-06-24 13:41:48 +02:00
|
|
|
understand why the patch is necessary and why it works. This will
|
|
|
|
be used both for initial review and for new people to understand
|
|
|
|
how the code works later.
|
|
|
|
|
2018-04-24 22:29:08 +02:00
|
|
|
5. For bonus points, ensure the project still builds in between every
|
2013-06-24 13:41:48 +02:00
|
|
|
patch in a set: this helps hunt down future regressions with 'bisect'.
|
|
|
|
|
2018-04-24 22:29:08 +02:00
|
|
|
6. Make sure you have the right to submit any changes you make. If you
|
2013-06-24 13:41:48 +02:00
|
|
|
do changes at work you may find your employer owns the patches
|
|
|
|
instead of you.
|
|
|
|
|
|
|
|
----------------------------------------------------------------------------
|
|
|
|
|
2023-09-04 09:33:44 +02:00
|
|
|
For a list of maintainers, please see [MAINTAINERS](./MAINTAINERS.md) file.
|