選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

CONTRIBUTING.md 11KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271
  1. # Contribution Guidelines
  2. ## Table of Contents
  3. - [Contribution Guidelines](#contribution-guidelines)
  4. - [Introduction](#introduction)
  5. - [Bug reports](#bug-reports)
  6. - [Discuss your design](#discuss-your-design)
  7. - [Testing redux](#testing-redux)
  8. - [Vendoring](#vendoring)
  9. - [Translation](#translation)
  10. - [Code review](#code-review)
  11. - [Styleguide](#styleguide)
  12. - [Sign-off your work](#sign-off-your-work)
  13. - [Release Cycle](#release-cycle)
  14. - [Maintainers](#maintainers)
  15. - [Owners](#owners)
  16. - [Versions](#versions)
  17. - [Copyright](#copyright)
  18. ## Introduction
  19. This document explains how to contribute changes to the Gitea project.
  20. It assumes you have followed the
  21. [installation instructions](https://docs.gitea.io/en-us/).
  22. Sensitive security-related issues should be reported to
  23. [security@gitea.io](mailto:security@gitea.io).
  24. For configuring IDE or code editor to develop Gitea see [IDE and code editor configuration](contrib/ide/)
  25. ## Bug reports
  26. Please search the issues on the issue tracker with a variety of keywords
  27. to ensure your bug is not already reported.
  28. If unique, [open an issue](https://github.com/go-gitea/gitea/issues/new)
  29. and answer the questions so we can understand and reproduce the
  30. problematic behavior.
  31. To show us that the issue you are having is in Gitea itself, please
  32. write clear, concise instructions so we can reproduce the behavior—
  33. even if it seems obvious. The more detailed and specific you are,
  34. the faster we can fix the issue. Check out [How to Report Bugs
  35. Effectively](http://www.chiark.greenend.org.uk/~sgtatham/bugs.html).
  36. Please be kind, remember that Gitea comes at no cost to you, and you're
  37. getting free help.
  38. ## Discuss your design
  39. The project welcomes submissions. If you want to change or add something,
  40. please let everyone know what you're working on—[file an issue](https://github.com/go-gitea/gitea/issues/new)!
  41. Significant changes must go through the change proposal process
  42. before they can be accepted. To create a proposal, file an issue with
  43. your proposed changes documented, and make sure to note in the title
  44. of the issue that it is a proposal.
  45. This process gives everyone a chance to validate the design, helps
  46. prevent duplication of effort, and ensures that the idea fits inside
  47. the goals for the project and tools. It also checks that the design is
  48. sound before code is written; the code review tool is not the place for
  49. high-level discussions.
  50. ## Testing redux
  51. Before sending code out for review, run all the tests for the
  52. whole tree to make sure the changes don't break other usage
  53. and keep the compatibility on upgrade. To make sure you are
  54. running the test suite exactly like we do, you should install
  55. the CLI for [Drone CI](https://github.com/drone/drone), as
  56. we are using the server for continous testing, following [these
  57. instructions](http://docs.drone.io/cli-installation/). After that,
  58. you can simply call `drone exec --local --build-event "pull_request"` within
  59. your working directory and it will try to run the test suite locally.
  60. ## Vendoring
  61. We keep a cached copy of dependencies within the `vendor/` directory,
  62. managing updates via [dep](https://github.com/golang/dep).
  63. Pull requests should only include `vendor/` updates if they are part of
  64. the same change, be it a bugfix or a feature addition.
  65. The `vendor/` update needs to be justified as part of the PR description,
  66. and must be verified by the reviewers and/or merger to always reference
  67. an existing upstream commit.
  68. You can find more information on how to get started with it on the [dep project website](https://golang.github.io/dep/docs/introduction.html).
  69. ## Translation
  70. We do all translation work inside [Crowdin](https://crowdin.com/project/gitea).
  71. The only translation that is maintained in this git repository is
  72. [`en_US.ini`](https://github.com/go-gitea/gitea/blob/master/options/locale/locale_en-US.ini)
  73. and is synced regularily to Crowdin. Once a translation has reached
  74. A SATISFACTORY PERCENTAGE it will be synced back into this repo and
  75. included in the next released version.
  76. ## Building Gitea
  77. Generally, the go build tools are installed as-needed in the `Makefile`.
  78. An exception are the tools to build the CSS and images.
  79. - To build CSS: Install [Node.js](https://nodejs.org/en/download/package-manager)
  80. with `npm` and then run `npm install` and `make generate-stylesheets`.
  81. - To build Images: ImageMagick, inkscape and zopflipng binaries must be
  82. available in your `PATH` to run `make generate-images`.
  83. ## Code review
  84. Changes to Gitea must be reviewed before they are accepted—no matter who
  85. makes the change, even if they are an owner or a maintainer. We use GitHub's
  86. pull request workflow to do that. And, we also use [LGTM](http://lgtm.co)
  87. to ensure every PR is reviewed by at least 2 maintainers.
  88. Please try to make your pull request easy to review for us. And, please read
  89. the *[How to get faster PR reviews](https://github.com/kubernetes/community/blob/261cb0fd089b64002c91e8eddceebf032462ccd6/contributors/guide/pull-requests.md#best-practices-for-faster-reviews)* guide;
  90. it has lots of useful tips for any project you may want to contribute.
  91. Some of the key points:
  92. * Make small pull requests. The smaller, the faster to review and the
  93. more likely it will be merged soon.
  94. * Don't make changes unrelated to your PR. Maybe there are typos on
  95. some comments, maybe refactoring would be welcome on a function... but
  96. if that is not related to your PR, please make *another* PR for that.
  97. * Split big pull requests into multiple small ones. An incremental change
  98. will be faster to review than a huge PR.
  99. ## Styleguide
  100. For imports you should use the following format (_without_ the comments)
  101. ```go
  102. import (
  103. // stdlib
  104. "encoding/json"
  105. "fmt"
  106. // local packages
  107. "code.gitea.io/gitea/models"
  108. "code.gitea.io/sdk/gitea"
  109. // external packages
  110. "github.com/foo/bar"
  111. "gopkg.io/baz.v1"
  112. )
  113. ```
  114. ## Sign-off your work
  115. The sign-off is a simple line at the end of the explanation for the
  116. patch. Your signature certifies that you wrote the patch or otherwise
  117. have the right to pass it on as an open-source patch. The rules are
  118. pretty simple: If you can certify [DCO](DCO), then you just add a line
  119. to every git commit message:
  120. ```
  121. Signed-off-by: Joe Smith <joe.smith@email.com>
  122. ```
  123. Please use your real name; we really dislike pseudonyms or anonymous
  124. contributions. We are in the open-source world without secrets. If you
  125. set your `user.name` and `user.email` git configs, you can sign-off your
  126. commit automatically with `git commit -s`.
  127. ## Release Cycle
  128. We adopted a release schedule to streamline the process of working
  129. on, finishing, and issuing releases. The overall goal is to make a
  130. minor release every two months, which breaks down into one month of
  131. general development followed by one month of testing and polishing
  132. known as the release freeze. All the feature pull requests should be
  133. merged in the first month of one release period. And, during the frozen
  134. period, a corresponding release branch is open for fixes backported from
  135. master. Release candidates are made during this period for user testing to
  136. obtain a final version that is maintained in this branch. A release is
  137. maintained by issuing patch releases to only correct critical problems
  138. such as crashes or security issues.
  139. Major release cycles are bimonthly. They always begin on the 25th and end on
  140. the 24th (i.e., the 25th of December to February 24th).
  141. During a development cycle, we may also publish any necessary minor releases
  142. for the previous version. For example, if the latest, published release is
  143. v1.2, then minor changes for the previous release—e.g., v1.1.0 -> v1.1.1—are
  144. still possible.
  145. ## Maintainers
  146. To make sure every PR is checked, we have [team
  147. maintainers](MAINTAINERS). Every PR **MUST** be reviewed by at least
  148. two maintainers (or owners) before it can get merged. A maintainer
  149. should be a contributor of Gitea (or Gogs) and contributed at least
  150. 4 accepted PRs. A contributor should apply as a maintainer in the
  151. [Discord](https://discord.gg/NsatcWJ) #develop channel. The owners
  152. or the team maintainers may invite the contributor. A maintainer
  153. should spend some time on code reviews. If a maintainer has no
  154. time to do that, they should apply to leave the maintainers team
  155. and we will give them the honor of being a member of the [advisors
  156. team](https://github.com/orgs/go-gitea/teams/advisors). Of course, if
  157. an advisor has time to code review, we will gladly welcome them back
  158. to the maintainers team. If a maintainer is inactive for more than 3
  159. months and forgets to leave the maintainers team, the owners may move
  160. him or her from the maintainers team to the advisors team.
  161. For security reasons, Maintainers should use 2FA for their accounts and
  162. if possible provide gpg signed commits.
  163. https://help.github.com/articles/securing-your-account-with-two-factor-authentication-2fa/
  164. https://help.github.com/articles/signing-commits-with-gpg/
  165. ## Owners
  166. Since Gitea is a pure community organization without any company support,
  167. to keep the development healthy we will elect three owners every year. All
  168. contributors may vote to elect up to three candidates, one of which will
  169. be the main owner, and the other two the assistant owners. When the new
  170. owners have been elected, the old owners will give up ownership to the
  171. newly elected owners. If an owner is unable to do so, the other owners
  172. will assist in ceding ownership to the newly elected owners.
  173. For security reasons, Owners or any account with write access (like a bot)
  174. must use 2FA.
  175. https://help.github.com/articles/securing-your-account-with-two-factor-authentication-2fa/
  176. After the election, the new owners should proactively agree
  177. with our [CONTRIBUTING](CONTRIBUTING.md) requirements in the
  178. [Discord](https://discord.gg/NsatcWJ) #general channel. Below are the
  179. words to speak:
  180. ```
  181. I'm honored to having been elected an owner of Gitea, I agree with
  182. [CONTRIBUTING](CONTRIBUTING.md). I will spend part of my time on Gitea
  183. and lead the development of Gitea.
  184. ```
  185. To honor the past owners, here's the history of the owners and the time
  186. they served:
  187. * 2016-11-04 ~ 2017-12-31
  188. * [Lunny Xiao](https://github.com/lunny) <xiaolunwen@gmail.com>
  189. * [Thomas Boerger](https://github.com/tboerger) <thomas@webhippie.de>
  190. * [Kim Carlbäcker](https://github.com/bkcsoft) <kim.carlbacker@gmail.com>
  191. * 2018-01-01 ~ 2018-12-31
  192. * [Lunny Xiao](https://github.com/lunny) <xiaolunwen@gmail.com>
  193. * [Lauris Bukšis-Haberkorns](https://github.com/lafriks) <lauris@nix.lv>
  194. * [Kim Carlbäcker](https://github.com/bkcsoft) <kim.carlbacker@gmail.com>
  195. ## Versions
  196. Gitea has the `master` branch as a tip branch and has version branches
  197. such as `release/v0.9`. `release/v0.9` is a release branch and we will
  198. tag `v0.9.0` for binary download. If `v0.9.0` has bugs, we will accept
  199. pull requests on the `release/v0.9` branch and publish a `v0.9.1` tag,
  200. after bringing the bug fix also to the master branch.
  201. Since the `master` branch is a tip version, if you wish to use Gitea
  202. in production, please download the latest release tag version. All the
  203. branches will be protected via GitHub, all the PRs to every branch must
  204. be reviewed by two maintainers and must pass the automatic tests.
  205. ## Copyright
  206. Code that you contribute should use the standard copyright header:
  207. ```
  208. // Copyright 2018 The Gitea Authors. All rights reserved.
  209. // Use of this source code is governed by a MIT-style
  210. // license that can be found in the LICENSE file.
  211. ```
  212. Files in the repository contain copyright from the year they are added
  213. to the year they are last changed. If the copyright author is changed,
  214. just paste the header below the old one.