From 87eb7a95813695b9773a53ba3f7391c13dd5dfff Mon Sep 17 00:00:00 2001 From: Denis Demchenko Date: Sat, 19 Jan 2019 15:57:00 +0200 Subject: [PATCH] Fix contributing docs --- CONTRIBUTING.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 8b19427..6a4640e 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,7 +1,7 @@ # Contributing -The project runs Git-flow, where the `master` branch is the production one and the `develop` is the developing one. +The project runs Git-flow, where the `master` branch is the development one and `production` is the production 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. +In a nutshell, if you're about to propose a new feature with adding some totally new functionality to `bowser`, it's better to branch from `master` and make a PR pointing back to `master` 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 `production` and make a PR pointing back to `production`. Following these simple rules will help to maintain the repo a lot! Thanks ❤️