2016-11-04 07:09:04 +05:30
|
|
|
# Contribution Guidelines
|
|
|
|
|
2017-04-28 19:26:28 +05:30
|
|
|
## Table of Contents
|
|
|
|
|
|
|
|
- [Contribution Guidelines](#contribution-guidelines)
|
|
|
|
- [Introduction](#introduction)
|
|
|
|
- [Bug reports](#bug-reports)
|
|
|
|
- [Discuss your design](#discuss-your-design)
|
|
|
|
- [Testing redux](#testing-redux)
|
|
|
|
- [Vendoring](#vendoring)
|
2017-08-28 06:56:27 +05:30
|
|
|
- [Translation](#translation)
|
2017-04-28 19:26:28 +05:30
|
|
|
- [Code review](#code-review)
|
|
|
|
- [Styleguide](#styleguide)
|
|
|
|
- [Sign your work](#sign-your-work)
|
|
|
|
- [Release Cycle](#release-cycle)
|
|
|
|
- [Maintainers](#maintainers)
|
|
|
|
- [Owners](#owners)
|
|
|
|
- [Versions](#versions)
|
|
|
|
- [Copyright](#copyright)
|
|
|
|
|
2016-11-04 07:09:04 +05:30
|
|
|
## Introduction
|
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
This document explains how to contribute changes to the Gitea project.
|
|
|
|
It assumes you have followed the
|
|
|
|
[installation instructions](https://docs.gitea.io/en-us/).
|
|
|
|
Sensitive security-related issues should be reported to
|
|
|
|
[security@gitea.io](mailto:security@gitea.io).
|
2016-11-04 07:09:04 +05:30
|
|
|
|
2017-09-12 17:57:44 +05:30
|
|
|
For configuring IDE or code editor to develop Gitea see [IDE and code editor configuration](contrib/ide/)
|
|
|
|
|
2016-11-04 14:13:41 +05:30
|
|
|
## Bug reports
|
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
Please search the issues on the issue tracker with a variety of keywords
|
|
|
|
to ensure your bug is not already reported.
|
2016-11-04 14:13:41 +05:30
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
If unique, [open an issue](https://github.com/go-gitea/gitea/issues/new)
|
|
|
|
and answer the questions so we can understand and reproduce the
|
|
|
|
problematic behavior.
|
2016-11-04 14:13:41 +05:30
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
To show us that the issue you are having is in Gitea itself, please
|
|
|
|
write clear, concise instructions so we can reproduce the behavior
|
|
|
|
(even if it seems obvious). The more detailed and specific you are,
|
|
|
|
the faster we can fix the issue. Check out [How to Report Bugs
|
|
|
|
Effectively](http://www.chiark.greenend.org.uk/~sgtatham/bugs.html).
|
2016-11-04 14:13:41 +05:30
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
Please be kind, remember that Gitea comes at no cost to you, and you're
|
|
|
|
getting free help.
|
2016-11-04 14:13:41 +05:30
|
|
|
|
2016-11-04 07:09:04 +05:30
|
|
|
## Discuss your design
|
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
The project welcomes submissions but please let everyone know what
|
|
|
|
you're working on if you want to change or add something to the Gitea
|
|
|
|
repositories.
|
2016-11-04 07:09:04 +05:30
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
Before starting to write something new for the Gitea project, please [file
|
|
|
|
an issue](https://github.com/go-gitea/gitea/issues/new). Significant
|
|
|
|
changes must go through the [change proposal
|
|
|
|
process](https://github.com/go-gitea/proposals) before they can be
|
|
|
|
accepted.
|
2016-11-04 07:09:04 +05:30
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
This process gives everyone a chance to validate the design, helps
|
|
|
|
prevent duplication of effort, and ensures that the idea fits inside
|
|
|
|
the goals for the project and tools. It also checks that the design is
|
|
|
|
sound before code is written; the code review tool is not the place for
|
|
|
|
high-level discussions.
|
2016-11-04 07:09:04 +05:30
|
|
|
|
|
|
|
## Testing redux
|
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
Before sending code out for review, run all the tests for the
|
|
|
|
whole tree to make sure the changes don't break other usage
|
|
|
|
and keep the compatibility on upgrade. To make sure you are
|
|
|
|
running the test suite exactly like we do, you should install
|
|
|
|
the CLI for [Drone CI](https://github.com/drone/drone), as
|
|
|
|
we are using the server for continous testing, following [these
|
|
|
|
instructions](http://readme.drone.io/usage/getting-started-cli). After
|
|
|
|
that you can simply call `drone exec` within your working directory and
|
|
|
|
it will try to run the test suite locally.
|
2016-11-04 07:09:04 +05:30
|
|
|
|
2017-02-11 09:25:22 +05:30
|
|
|
## Vendoring
|
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
We keep a cached copy of dependencies within the `vendor/` directory,
|
|
|
|
managing updates via [govendor](http://github.com/kardianos/govendor).
|
2017-02-11 09:25:22 +05:30
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
Pull requests should only include `vendor/` updates if they are part of
|
|
|
|
the same change, be it a bugfix or a feature addition.
|
2017-02-11 09:25:22 +05:30
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
The `vendor/` update needs to be justified as part of the PR description,
|
|
|
|
and must be verified by the reviewers and/or merger to always reference
|
|
|
|
an existing upstream commit.
|
2017-02-11 09:25:22 +05:30
|
|
|
|
2017-08-28 06:56:27 +05:30
|
|
|
## Translation
|
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
We do all translation work inside [Crowdin](https://crowdin.com/project/gitea).
|
|
|
|
The only translation that is maintained in this git repository is
|
|
|
|
[`en_US.ini`](https://github.com/go-gitea/gitea/blob/master/options/locale/locale_en-US.ini)
|
|
|
|
and is synced regularily to Crowdin. Once a translation has reached
|
|
|
|
A SATISFACTORY PERCENTAGE it will be synced back into this repo and
|
|
|
|
included in the next released version.
|
2017-08-28 06:56:27 +05:30
|
|
|
|
2016-11-04 07:09:04 +05:30
|
|
|
## Code review
|
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
Changes to Gitea must be reviewed before they are accepted, no matter who
|
|
|
|
makes the change even if it is an owner or a maintainer. We use GitHub's
|
|
|
|
pull request workflow to do that and we also use [LGTM](http://lgtm.co)
|
|
|
|
to ensure every PR is reviewed by at least 2 maintainers.
|
2016-11-25 06:55:34 +05:30
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
Please try to make your pull request easy to review for us.
|
|
|
|
Please read the [How to get faster PR reviews](https://github.com/kubernetes/community/blob/master/contributors/devel/faster_reviews.md) guide,
|
|
|
|
it has lots of useful tips for any project you may want to contribute.
|
|
|
|
Some of the key points:
|
2016-11-28 21:27:42 +05:30
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
* Make small pull requests. The smaller, the faster to review and the
|
|
|
|
more likely it will be merged soon.
|
|
|
|
* Don't make changes unrelated to your PR. Maybe there are typos on
|
|
|
|
some comments, maybe refactoring would be welcome on a function... but
|
|
|
|
if that is not related to your PR, please make *another* PR for that.
|
|
|
|
* Split big pull requests into multiple small ones. An incremental change
|
|
|
|
will be faster to review than a huge PR.
|
2016-11-28 21:27:42 +05:30
|
|
|
|
2017-02-13 08:05:57 +05:30
|
|
|
## Styleguide
|
|
|
|
|
|
|
|
For imports you should use the following format (_without_ the comments)
|
|
|
|
```go
|
|
|
|
import (
|
|
|
|
// stdlib
|
|
|
|
"encoding/json"
|
|
|
|
"fmt"
|
|
|
|
|
|
|
|
// local packages
|
|
|
|
"code.gitea.io/gitea/models"
|
|
|
|
"code.gitea.io/sdk/gitea"
|
|
|
|
|
|
|
|
// external packages
|
|
|
|
"github.com/foo/bar"
|
|
|
|
"gopkg.io/baz.v1"
|
|
|
|
)
|
|
|
|
```
|
|
|
|
|
2016-11-04 14:13:41 +05:30
|
|
|
## Sign your work
|
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
The sign-off is a simple line at the end of the explanation for the
|
|
|
|
patch. Your signature certifies that you wrote the patch or otherwise
|
|
|
|
have the right to pass it on as an open-source patch. The rules are
|
|
|
|
pretty simple: If you can certify [DCO](DCO), then you just add a line
|
|
|
|
to every git commit message:
|
2016-11-04 14:13:41 +05:30
|
|
|
|
|
|
|
```
|
|
|
|
Signed-off-by: Joe Smith <joe.smith@email.com>
|
|
|
|
```
|
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
Please use your real name, we really dislike pseudonyms or anonymous
|
|
|
|
contributions. We are in the open-source world without secrets. If you
|
|
|
|
set your `user.name` and `user.email` git configs, you can sign your
|
|
|
|
commit automatically with `git commit -s`.
|
2016-11-04 07:09:04 +05:30
|
|
|
|
2017-02-19 20:53:37 +05:30
|
|
|
## Release Cycle
|
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
We adopted a release schedule to streamline the process of working
|
|
|
|
on, finishing, and issuing releases. The overall goal is to make a
|
|
|
|
minor release every two months, which breaks down into one month of
|
|
|
|
general development followed by one month of testing and polishing
|
|
|
|
known as the release freeze. All the feature pull requests should be
|
|
|
|
merged in the first month of one release period and during the frozen
|
|
|
|
period a corresponding release branch is open for fix backported from
|
|
|
|
master. Release candidate are made along this period for user testing to
|
|
|
|
obtain a final version that is maintained in this branch. A release is
|
|
|
|
maintained by issuing patch releases to only correct critical problems
|
|
|
|
such as crashes or security issues.
|
|
|
|
|
|
|
|
The current release cycle is aligned to start on December 25 to February
|
|
|
|
24, next is February 25 to April 24, and etc. On this cycle, we also
|
|
|
|
maybe publish the previous release minor version. For example, the
|
|
|
|
current release version is v1.1, but we maybe also publish v1.0.2. When
|
|
|
|
we publish v1.2, then we will stop publish v1.0.3.
|
2017-02-19 20:53:37 +05:30
|
|
|
|
2016-11-04 07:09:04 +05:30
|
|
|
## Maintainers
|
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
To make sure every PR is checked, we have [team
|
|
|
|
maintainers](MAINTAINERS). Every PR **MUST** be reviewed by at least
|
|
|
|
two maintainers (or owners) before it can get merged. A maintainer
|
|
|
|
should be a contributor of Gitea (or Gogs) and contributed at least
|
|
|
|
4 accepted PRs. A contributor should apply as a maintainer in the
|
|
|
|
[Discord](https://discord.gg/NsatcWJ) #develop channel. The owners
|
|
|
|
or the team maintainers may invite the contributor. A maintainer
|
|
|
|
should spend some time on code reviews. If a maintainer has no
|
|
|
|
time to do that, they should apply to leave the maintainers team
|
|
|
|
and we will give them the honor of being a member of the [advisors
|
|
|
|
team](https://github.com/orgs/go-gitea/teams/advisors). Of course, if
|
|
|
|
an advisor has time to code review, we will gladly welcome them back
|
|
|
|
to the maintainers team. If a maintainer is inactive for more than 3
|
|
|
|
months and forgets to leave the maintainers team, the owners may move
|
|
|
|
him or her from the maintainers team to the advisors team.
|
2016-11-04 07:09:04 +05:30
|
|
|
|
|
|
|
## Owners
|
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
Since Gitea is a pure community organization without any company support,
|
|
|
|
to keep the development healthy we will elect three owners every year. All
|
|
|
|
contributors may vote to elect up to three candidates, one of which will
|
|
|
|
be the main owner, and the other two the assistant owners. When the new
|
|
|
|
owners have been elected, the old owners will give up ownership to the
|
|
|
|
newly elected owners. If an owner is unable to do so, the other owners
|
|
|
|
will assist in ceding ownership to the newly elected owners.
|
2016-11-04 07:09:04 +05:30
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
After the election, the new owners should proactively agree
|
|
|
|
with our [CONTRIBUTING](CONTRIBUTING.md) requirements in the
|
|
|
|
[Discord](https://discord.gg/NsatcWJ) #general channel. Below are the
|
|
|
|
words to speak:
|
2016-11-04 07:09:04 +05:30
|
|
|
|
|
|
|
```
|
2017-09-03 01:08:31 +05:30
|
|
|
I'm honored to having been elected 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.
|
2016-11-04 07:09:04 +05:30
|
|
|
```
|
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
To honor the past owners, here's the history of the owners and the time
|
|
|
|
they served:
|
2016-11-06 03:53:14 +05:30
|
|
|
|
2016-11-28 19:05:55 +05:30
|
|
|
* 2016-11-04 ~ 2017-12-31
|
|
|
|
* [Lunny Xiao](https://github.com/lunny) <xiaolunwen@gmail.com>
|
|
|
|
* [Thomas Boerger](https://github.com/tboerger) <thomas@webhippie.de>
|
|
|
|
* [Kim Carlbäcker](https://github.com/bkcsoft) <kim.carlbacker@gmail.com>
|
2016-11-04 07:09:04 +05:30
|
|
|
|
|
|
|
## Versions
|
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
Gitea has the `master` branch as a tip branch and has version branches
|
|
|
|
such as `release/v0.9`. `release/v0.9` is a release branch and we will
|
|
|
|
tag `v0.9.0` for binary download. If `v0.9.0` has bugs, we will accept
|
|
|
|
pull requests on the `release/v0.9` branch and publish a `v0.9.1` tag,
|
|
|
|
after bringing the bug fix also to the master branch.
|
2016-11-04 07:09:04 +05:30
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
Since the `master` branch is a tip version, if you wish to use Gitea
|
|
|
|
in production, please download the latest release tag version. All the
|
|
|
|
branches will be protected via GitHub, all the PRs to every branch must
|
|
|
|
be reviewed by two maintainers and must pass the automatic tests.
|
2016-11-04 07:09:04 +05:30
|
|
|
|
|
|
|
## Copyright
|
|
|
|
|
|
|
|
Code that you contribute should use the standard copyright header:
|
|
|
|
|
|
|
|
```
|
2017-01-24 06:46:19 +05:30
|
|
|
// Copyright 2017 The Gitea Authors. All rights reserved.
|
2016-11-04 07:09:04 +05:30
|
|
|
// Use of this source code is governed by a MIT-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
```
|
|
|
|
|
2017-09-03 01:08:31 +05:30
|
|
|
Files in the repository contain copyright from the year they are added
|
|
|
|
to the year they are last changed. If the copyright author is changed,
|
|
|
|
just paste the header below the old one.
|