Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

CONTRIBUTING.md 6.0KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162
  1. # Contribution Guidelines
  2. ## Introduction
  3. This document explains how to contribute changes to the Gitea
  4. project. It assumes you have followed the [installation
  5. instructions](https://github.com/go-gitea/docs/tree/master/en-US/installation)
  6. Sensitive security-related issues should be reported to
  7. [security@gitea.io](mailto:security@gitea.io).
  8. ## Bug reports
  9. Please search the issues on the issue tracker with a variety of keywords
  10. to ensure your bug is not already reported.
  11. If unique, [open an issue](https://github.com/go-gitea/gitea/issues/new)
  12. and answer the questions so we can understand and reproduce the
  13. problematic behavior.
  14. The burden is on you to convince us that it is actually a bug
  15. in Gitea. This is easiest to do when you write clear, concise
  16. instructions so we can reproduce the behavior (even if it seems
  17. obvious). The more detailed and specific you are, the faster
  18. we will be able to help you. Check out [How to Report Bugs
  19. Effectively](http://www.chiark.greenend.org.uk/~sgtatham/bugs.html).
  20. Please be kind, remember that Gitea comes at no cost to you, and you're
  21. getting free help.
  22. ## Discuss your design
  23. The project welcomes submissions but please let everyone know what
  24. you're working on if you want to change or add something to the Gitea
  25. repositories.
  26. Before starting to write something new for the Gitea project, please
  27. [file an issue](https://github.com/go-gitea/gitea/issues/new).
  28. Significant changes must go through the [change proposal
  29. process](https://github.com/go-gitea/proposals) before they can be
  30. accepted.
  31. This process gives everyone a chance to validate the design, helps
  32. prevent duplication of effort, and ensures that the idea fits inside
  33. the goals for the project and tools. It also checks that the design is
  34. sound before code is written; the code review tool is not the place for
  35. high-level discussions.
  36. ## Testing redux
  37. Before sending code out for review, run all the tests for the whole
  38. tree to make sure the changes don't break other usage and keep the
  39. compatibility on upgrade:
  40. After running for a while, the command should print
  41. ```
  42. ALL TESTS PASSED
  43. ```
  44. ## Code review
  45. Changes to Gitea must be reviewed before they are accepted, no matter
  46. who makes the change even if an owners or a maintainer. We use github's
  47. pull request workflow to do that and use [lgtm](http://lgtm.co) to ensure
  48. every PR is reviewed by at least 2 maintainers.
  49. ## Sign your work
  50. The sign-off is a simple line at the end of the explanation for the
  51. patch. Your signature certifies that you wrote the patch or otherwise
  52. have the right to pass it on as an open-source patch. The rules are
  53. pretty simple: If you can certify [DCO](DCO), then you just add a line
  54. to every git commit message:
  55. ```
  56. Signed-off-by: Joe Smith <joe.smith@email.com>
  57. ```
  58. Please use your real name, we really dislike pseudonyms or anonymous
  59. contributions. We are in the opensource world without secrets. If you
  60. set your `user.name` and `user.email` git configs, you can sign your
  61. commit automatically with `git commit -s`.
  62. ## Contributors
  63. Everyone who sent a PR to Gitea that gets accepted will
  64. be as a contributor. Please send a PR to add your name to
  65. [CONTRIBUTORS](CONTRIBUTORS). For the format, see the
  66. [CONTRIBUTORS](CONTRIBUTORS).
  67. ## Maintainers
  68. To make sure every PR have been checked, we make a team maintainers. Any
  69. PR MUST be reviewed and by at least two maintainers before it can
  70. get merged. Maintainers should be a contributor of gitea(or gogs) and
  71. contributed at least 4 accepted PRs. And a contributor should apply as a
  72. maintainer in [gitter Gitea develop](https://gitter.im/go-gitea/develop).
  73. And the owners or the team maintainer could invite the contributor. A
  74. maintainer should spend some time on code reviews. If some maintainer
  75. have no time to do that, he should apply to leave maintainers team and
  76. we will give him an honor to be as a member of advisor team. Of course,
  77. if an advisor have time to code view, welcome it back to maintainers team.
  78. If some one have no time to code view and forget to leave the maintainers,
  79. the owners have the power to move him from maintainers team to advisors
  80. team.
  81. ## Owners
  82. Since Gitea is a pure community organization without any company
  83. support, to keep the development healthly We will elect the owners every
  84. year. Every time we will elect three owners. All the contributers could
  85. vote for three owners, one is the main owner, the other two are assistant
  86. owners. When the new owners have been elected, the old owners MUST move
  87. the power to the new owners. If some owner don't obey these rules,
  88. the other owners are allowed to revoke his owner status.
  89. After the election, the new owners should say he agrees with these
  90. rules on the [CONTRIBUTING](CONTRIBUTING.md) on the [Gitter Gitea
  91. Channel](https://gitter.im/go-gitea/gitea). Below is the word to speak
  92. ```
  93. I'm glad to be an owner of Gitea,
  94. I agree with [CONTRIBUTING](CONTRIBUTING.md).
  95. I will spend part of my time on gitea
  96. and lead the development of gitea.
  97. ```
  98. For a honor to the owners, this document will add the history owners
  99. below:
  100. 2016-11-04 ~ 2017-12-31
  101. - lunny <xiaolunwen@gmail.com>
  102. - tboerger <thomas@webhippie.de>
  103. - bkcsoft <kim.carlbacker@gmail.com>
  104. ## Versions
  105. Gitea has one master as a tip branch and have many version branch
  106. such as v0.9. v0.9 is a release branch and we will tag v0.9.0 both for
  107. binary download. If v0.9.0 have some bugs, we will accept PR on v0.9
  108. and publish v0.9.1 and merge bug PR to master.
  109. Branch master is a tip version, so if you wish a production usage,
  110. please download the latest release tag version. All the branch will be
  111. protected via github, All the PRs to all the branches should be review
  112. by two maintainers and pass the automatic tests.
  113. ## Copyright
  114. Code that you contribute should use the standard copyright header:
  115. ```
  116. // Copyright 2016 - 2017 The Gitea Authors. All rights reserved.
  117. // Use of this source code is governed by a MIT-style
  118. // license that can be found in the LICENSE file.
  119. ```
  120. Files in the repository are copyright the year they are added and the
  121. year they are last changed. If the copyright author is changed, just
  122. copy the head below the old one.