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 14KB

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