-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update README and CONTRIBUTING (#63)
- Loading branch information
Showing
2 changed files
with
50 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# How to Contribute # | ||
|
||
While we are working on NZBGet project all the time, we still would really like and need help on many areas: | ||
|
||
- Major - code contributions on features and bugs | ||
- Improvements in tests | ||
- Improvements on documentation | ||
|
||
We entice our users to participate in the project, please don't hesitate to get involved - create a [new issue](https://github.com/nzbgetcom/nzbget/issues/new) or [pull request](https://github.com/nzbgetcom/nzbget/compare) - that would also greatly help if you'll share your usage experience. | ||
|
||
## Documentation ## | ||
|
||
Main documentation is available on the NZBGet.com website - [https://nzbget.com/documentation/](https://nzbget.com/documentation/) | ||
|
||
## Development ## | ||
|
||
NZBGet natively supports for multiple platforms and build options, so each platform has their own development documenation, including: | ||
|
||
- [General documentation, including Posix](https://github.com/nzbgetcom/nzbget/blob/develop/README) | ||
- [Windows](https://github.com/nzbgetcom/nzbget/blob/develop/windows/README-WINDOWS.txt) | ||
- [Docker](https://github.com/nzbgetcom/nzbget/blob/develop/docker/README.md) | ||
|
||
### Branches naming policy ### | ||
|
||
- `main` is a protected branch that contains only release code | ||
- `develop` is a protected branch for development | ||
- new branches should follow the following convention: | ||
- `hotfix/brief-description` for any small hotfixes | ||
- `feature/brief-description` for any new developments | ||
- `bugfix/brief-description` for bugs | ||
|
||
### Pull requests flow for `develop` and `main` branches ### | ||
|
||
1. For PRs targeting `develop` branch `Squash and merge` mode must be used. | ||
2. After merging branch to `develop`, branch must be deleted. | ||
3. For release PR (`develop` -> `main`) `Create a merge commit` mode must be used. | ||
4. After merging `develop` -> `main`, must be back merge `main` -> `develop` before any changes in `develop` branch. | ||
|
||
This flow results to the fact that in the PR to master branch we see only the squashed commits that correspond to the PRs in the develop branch in current release cycle. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters