CONTRIBUTING.rst 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. Contributing code to Matrix
  2. ===========================
  3. Everyone is welcome to contribute code to Matrix
  4. (https://github.com/matrix-org), provided that they are willing to license
  5. their contributions under the same license as the project itself. We follow a
  6. simple 'inbound=outbound' model for contributions: the act of submitting an
  7. 'inbound' contribution means that the contributor agrees to license the code
  8. under the same terms as the project's overall 'outbound' license - in our
  9. case, this is almost always Apache Software License v2 (see LICENSE).
  10. How to contribute
  11. ~~~~~~~~~~~~~~~~~
  12. The preferred and easiest way to contribute changes to Matrix is to fork the
  13. relevant project on github, and then create a pull request to ask us to pull
  14. your changes into our repo
  15. (https://help.github.com/articles/using-pull-requests/)
  16. **The single biggest thing you need to know is: please base your changes on
  17. the develop branch - /not/ master.**
  18. We use the master branch to track the most recent release, so that folks who
  19. blindly clone the repo and automatically check out master get something that
  20. works. Develop is the unstable branch where all the development actually
  21. happens: the workflow is that contributors should fork the develop branch to
  22. make a 'feature' branch for a particular contribution, and then make a pull
  23. request to merge this back into the matrix.org 'official' develop branch. We
  24. use github's pull request workflow to review the contribution, and either ask
  25. you to make any refinements needed or merge it and make them ourselves. The
  26. changes will then land on master when we next do a release.
  27. We use Jenkins for continuous integration (http://matrix.org/jenkins), and
  28. typically all pull requests get automatically tested Jenkins: if your change breaks the build, Jenkins will yell about it in #matrix-dev:matrix.org so please lurk there and keep an eye open.
  29. Code style
  30. ~~~~~~~~~~
  31. All Matrix projects have a well-defined code-style - and sometimes we've even
  32. got as far as documenting it... For instance, synapse's code style doc lives
  33. at https://github.com/matrix-org/synapse/tree/master/docs/code_style.rst.
  34. Please ensure your changes match the cosmetic style of the existing project,
  35. and **never** mix cosmetic and functional changes in the same commit, as it
  36. makes it horribly hard to review otherwise.
  37. Attribution
  38. ~~~~~~~~~~~
  39. Everyone who contributes anything to Matrix is welcome to be listed in the
  40. AUTHORS.rst file for the project in question. Please feel free to include a
  41. change to AUTHORS.rst in your pull request to list yourself and a short
  42. description of the area(s) you've worked on. Also, we sometimes have swag to
  43. give away to contributors - if you feel that Matrix-branded apparel is missing
  44. from your life, please mail us your shipping address to matrix at matrix.org and we'll try to fix it :)
  45. Sign off
  46. ~~~~~~~~
  47. In order to have a concrete record that your contribution is intentional
  48. and you agree to license it under the same terms as the project's license, we've adopted the
  49. same lightweight approach that the Linux Kernel
  50. (https://www.kernel.org/doc/Documentation/SubmittingPatches), Docker
  51. (https://github.com/docker/docker/blob/master/CONTRIBUTING.md), and many other
  52. projects use: the DCO (Developer Certificate of Origin:
  53. http://developercertificate.org/). This is a simple declaration that you wrote
  54. the contribution or otherwise have the right to contribute it to Matrix::
  55. Developer Certificate of Origin
  56. Version 1.1
  57. Copyright (C) 2004, 2006 The Linux Foundation and its contributors.
  58. 660 York Street, Suite 102,
  59. San Francisco, CA 94110 USA
  60. Everyone is permitted to copy and distribute verbatim copies of this
  61. license document, but changing it is not allowed.
  62. Developer's Certificate of Origin 1.1
  63. By making a contribution to this project, I certify that:
  64. (a) The contribution was created in whole or in part by me and I
  65. have the right to submit it under the open source license
  66. indicated in the file; or
  67. (b) The contribution is based upon previous work that, to the best
  68. of my knowledge, is covered under an appropriate open source
  69. license and I have the right under that license to submit that
  70. work with modifications, whether created in whole or in part
  71. by me, under the same open source license (unless I am
  72. permitted to submit under a different license), as indicated
  73. in the file; or
  74. (c) The contribution was provided directly to me by some other
  75. person who certified (a), (b) or (c) and I have not modified
  76. it.
  77. (d) I understand and agree that this project and the contribution
  78. are public and that a record of the contribution (including all
  79. personal information I submit with it, including my sign-off) is
  80. maintained indefinitely and may be redistributed consistent with
  81. this project or the open source license(s) involved.
  82. If you agree to this for your contribution, then all that's needed is to
  83. include the line in your commit or pull request comment::
  84. Signed-off-by: Your Name <your@email.example.org>
  85. ...using your real name; unfortunately pseudonyms and anonymous contributions
  86. can't be accepted. Git makes this trivial - just use the -s flag when you do
  87. ``git commit``, having first set ``user.name`` and ``user.email`` git configs
  88. (which you should have done anyway :)
  89. Conclusion
  90. ~~~~~~~~~~
  91. That's it! Matrix is a very open and collaborative project as you might expect given our obsession with open communication. If we're going to successfully matrix together all the fragmented communication technologies out there we are reliant on contributions and collaboration from the community to do so. So please get involved - and we hope you have as much fun hacking on Matrix as we do!