syncthing/CONTRIBUTING.md

111 lines
3.5 KiB
Markdown
Raw Normal View History

2014-08-05 20:53:46 +02:00
## Reporting Bugs
Please file bugs in the [Github Issue
Tracker](https://github.com/syncthing/syncthing/issues). Include at
least the following:
- What happened
- What did you expect to happen instead of what *did* happen, if it's
not crazy obvious
- What operating system, operating system version and version of
Syncthing you are running
- The same for other connected devices, where relevant
2014-08-05 20:53:46 +02:00
- Screenshot if the issue concerns something visible in the GUI
- Console log entries, where possible and relevant
If you're not sure whether something is relevant, erring on the side of
too much information will never get you yelled at. :)
## Contributing Translations
All translations are done via
[Transifex](https://www.transifex.com/projects/p/syncthing/). If you
wish to contribute to a translation, just head over there and sign up.
Before every release, the language resources are updated from the
latest info on Transifex.
2014-08-05 20:53:46 +02:00
## Contributing Code
2014-11-18 08:49:02 +01:00
Every contribution is welcome. If you want to contribute but are unsure
where to start, any open issues are fair game! Be prepared for a
[certain amount of review](https://discourse.syncthing.net/t/733); it's
all in the name of quality. :) Following the points below will make this
a smoother process.
2014-01-28 19:08:45 +01:00
2014-11-18 08:49:02 +01:00
## Coding Style
2014-09-26 09:50:56 +02:00
2014-11-18 08:49:02 +01:00
- Follow the conventions laid out in [Effective Go](https://golang.org/doc/effective_go.html)
as much as makes sense.
2014-09-26 09:50:56 +02:00
2014-11-18 08:49:02 +01:00
- All text files use Unix line endings.
2014-09-26 09:50:56 +02:00
2014-11-18 08:49:02 +01:00
- Each commit should be `go fmt` clean.
- The commit message subject should be a single short sentence
describing the change, starting with a capital letter.
- Commits that resolve an existing issue must include the issue number
as `(fixes #123)` at the end of the commit message subject.
- Imports are grouped per `goimports` standard; that is, standard
library first, then third party libraries after a blank line.
- A contribution solving a single issue or introducing a single new
feature should probably be a single commit based on the current
`master` branch. You may be asked to "rebase" or "squash" your pull
request to make sure this is the case, especially if there have been
amendments during review.
2014-09-26 09:50:56 +02:00
2014-03-24 14:57:14 +01:00
## Licensing
2014-09-29 21:43:32 +02:00
All contributions are made under the same GPL license as the rest of the
project, except documentation, user interface text and translation
strings which are licensed under the Creative Commons Attribution 4.0
International License. You retain the copyright to code you have
written.
2014-03-24 14:57:14 +01:00
When accepting your first contribution, the maintainer of the project
2014-11-18 15:13:19 +01:00
will ensure that you are added to the AUTHORS file. You are welcome to
add yourself as a separate commit in your first pull request.
2014-03-24 14:57:14 +01:00
2014-01-28 19:08:45 +01:00
## Building
2014-08-05 20:53:46 +02:00
[See the documentation](http://discourse.syncthing.net/t/44) on how to
get started with a build environment.
2014-01-28 19:08:45 +01:00
2014-03-24 14:55:13 +01:00
## Branches
- `master` is the main branch containing good code that will end up in
the next release. You should base your work on it. It won't ever be
rebased or force-pushed to.
- `vx.y` branches exist to make patch releases on otherwise obsolete
minor releases. Should only contain fixes cherry picked from master.
Don't base any work on them.
- Other branches are probably topic branches and may be subject to
rebasing. Don't base any work on them unless you specifically know
otherwise.
## Tags
All releases are tagged semver style as `vx.y.z`. Release tags are
signed by GPG key BCE524C7.
2014-01-28 19:08:45 +01:00
## Tests
Yes please!
## Documentation
2014-04-30 15:14:42 +02:00
[Over here!](http://discourse.syncthing.net/category/documentation)
2014-01-28 19:08:45 +01:00
## License
2014-09-29 21:43:32 +02:00
GPLv3