You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CONTRIBUTING.md 6.0KB

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