From d039ce020e65755583e6ad33f7254cd4a43fb2e1 Mon Sep 17 00:00:00 2001 From: Denis Demchenko Date: Sat, 18 Aug 2018 14:13:50 +0300 Subject: [PATCH] Add contributing.md --- CONTRIBUTING.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 CONTRIBUTING.md diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md new file mode 100644 index 0000000..8b19427 --- /dev/null +++ b/CONTRIBUTING.md @@ -0,0 +1,7 @@ +# Contributing + +The project runs Git-flow, where the `master` branch is the production one and the `develop` is the developing one. + +In a nutshell, if you're about to propose a new feature with adding new functionality to bowser, it's better to branch from `develop` and make a PR pointing to `develop` as well. +If it's a small hotfix, fix a typo in the docs or you've added support for a new browser/OS/platform/etc, then it's better to branch from `master` and make a PR pointing to `master` as well. +Following these simple rules will help to maintain the repo a lot! Thanks ❤️